ismaelw / laratex

A Laravel package for creating PDF files using LaTeX
MIT License
105 stars 13 forks source link

Rendering Bibtex #19

Closed drjermy closed 1 year ago

drjermy commented 1 year ago

For BibTeX rendering to work, the LaTeX file needs to be compiled, then BibTeX run against that file and then the LaTeX compilation needs to happen again twice.

So, this works perfectly.

$reportContent = (new LaraTeX('tex.report')) ->with(...) ->renderBibtex() ->compileAmount(3) ->content();