From 4f2e126d628bbf20b5029d62c07c34839c68bfce Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Fri, 18 Feb 2022 10:05:27 -0800
Subject: [PATCH] Add faq on converting from latex + bibtex.

---
 doc/faqs.md | 11 +++++++++++
 1 file changed, 11 insertions(+)

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)).
+
 :::