Ok, now I'm confused.
The documentation reads (my emphasis):

Use biblatex for citations in LaTeX output. This option is not for use with the --citeproc option or with PDF output. It is intended for use in producing a LaTeX file that can be processed with bibtex or biber.

How does that align with the command

pandoc test.md --biblatex -o test.pdf --pdf-engine=latexmk

?


Le ven. 29 oct. 2021 à 13:03, John MacFarlane <jgm@berkeley.edu> a écrit :
Clément Aubert <aubert.clement-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes:

> Ok, thanks a lot.
>
> A "reasonable" pipe-line would be
> pandoc test.md -t latex --biblatex | pandoc --pdf-engine=latexmk -o test.pdf

No, not like that.  Either

pandoc test.md -t latex -s --biblatex -o test.tex
pdflatex test
biber test
pdflatex test
pdflatex test

Or, easier

pandoc test.md --biblatex -o test.pdf --pdf-engine=latexmk

(which should run biber for you, if I'm not mistaken.)

--
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/CAPGHSez6NfusgPkOzr%2BXCPwpnWhs833BNKibELak8MS-4GbPHg%40mail.gmail.com.