Add faq on converting from latex + bibtex.

This commit is contained in:
John MacFarlane 2022-02-18 10:05:27 -08:00
parent 5b84c0f09d
commit 4f2e126d62

View file

@ -150,4 +150,15 @@ pandoc -s -o output.html input.ipynb \
-V header-includes='<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js"></script>'
```
## How can I get BibTeX references to work when converting from LaTeX?
Use the `--citeproc` option.
If it still doesn't work, you may need to tell pandoc where
your bibliography file is using `--bibliography`.
Your references may not be formatted the same as they are
when you use `latex` and `bibtex`; you can change the format
of the citations by specifying an appropriate CSL bibliography
style using `--csl`
(see [the manual](https://pandoc.org/MANUAL.html#specifying-a-citation-style)).
:::