aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-07-03 15:51:07 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2021-07-03 15:51:07 -0700
commit95541294d384d5bf6514b0b676bf93b44ba4d26d (patch)
tree090a02541a5801790a4e7a73e581aeab684d482f /doc
parent972db3cdcac19bca0dd4e0957514a48bbf1feacb (diff)
downloadpandoc-95541294d384d5bf6514b0b676bf93b44ba4d26d.tar.gz
Add FAQ on converting from/to PDF
Diffstat (limited to 'doc')
-rw-r--r--doc/faqs.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/faqs.md b/doc/faqs.md
index 0b53730f3..2f3368837 100644
--- a/doc/faqs.md
+++ b/doc/faqs.md
@@ -106,5 +106,23 @@ When using `\AtEndPreamble`, keep any `makeatletter` or
`makeatother` outside of the `\AtEndPreamble`, as shown in the
example.
+## How can I convert PDFs to other formats using pandoc?
+
+You can't. You can try opening the PDF in Word or Google Docs
+and saving in a format from which pandoc can convert directly.
+
+## Do I really need to install a 1 GB TeX installation to produce a PDF using pandoc?
+
+No. You can get by with a relatively small TeX installation,
+for example, by starting with MacTeX's Basic TeX distribution
+and using the `tlmgr` tool to install a few packages required by pandoc
+(see https://pandoc.org/MANUAL.html#creating-a-pdf).
+
+Or, you can produce PDFs via HTML and `wkhtmltopdf`,
+or via groff ms and `pdfroff`. (These don't produce as nice
+topography as TeX, particularly when it comes to math, but they
+may be fine for many purposes.)
+
+
:::