summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2022-02-18 10:05:27 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2022-02-18 10:05:27 -0800
commit4f2e126d628bbf20b5029d62c07c34839c68bfce (patch)
tree16effcc226880ee6b971456f8219185c8769c08f
parent5b84c0f09d97749487c1203b4fe495c53603cb30 (diff)
Add faq on converting from latex + bibtex.
-rw-r--r--doc/faqs.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/faqs.md b/doc/faqs.md
index 235783cf5..2dffcbf16 100644
--- a/doc/faqs.md
+++ b/doc/faqs.md
@@ -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)).
+
:::