fig.cap markdown isn't parsed when out.width is specified.
cpsievert opened this issue · 4 comments
To replicate, put some markdown in this fig.cap
.
bookdown-crc/01-introduction.Rmd
Lines 9 to 12 in f91226b
For example, "**Hello** world!"
outputs "**Hello** world!"
Interestingly, if you remove the out.width
chunk option, it works as expected.
Oh, another thing, the markdown is always parsed for HTML output, but this problem happens when you do:
bookdown::render_book("index.Rmd", "bookdown::pdf_book")
You have to use text references: https://bookdown.org/yihui/bookdown/markdown-extensions-by-bookdown.html#text-references
Great, this seems to fix a lot of the issues I was seeing, thanks!
Could you provide some intuition as why this is necessary? Even if it's just a useful workaround? Having a comment about this somewhere (either in the publishing section of the bookdown book or in this repo) would have saved me lots of time.
From the book:
[...] It is also useful when these captions contain special HTML or LaTeX characters, e.g., if the figure caption contains an underscore, it works in the HTML output but may not work in LaTeX output because the underscore must be escaped in LaTeX.
The text can contain anything that Markdown supports [...]
It is necessary to use a text reference in your case because your caption is not "plain-text": it contains formatting (with Markdown syntax). When out.width
is used, knitr switches to hook_plot_tex
to generate LaTeX code for graphics (i.e. the \begin{figure}
\includegraphics{}
\caption{}
stuff), and Pandoc doesn't recognize Markdown in \caption{}
. Without out.width
, it generates Markdown ![]()
, and Pandoc can recognize Markdown in the caption []
.
In short, you can only put the caption in fig.cap
if the caption is not plain plain-text without any special characters in any languages. In other cases, it is only safe to use text references.