在书本中,有没有办法让我添加一个在pdf,docx和html输出中保持一致的LaTeX定理环境?
将以下代码(来自Bookdown Book - Markdown extensions by bookdown)添加到bookdown-demo中:
```{theorem, pyth, name="Pythagorean theorem"}
For a right triangle, if $c$ denotes the length of the hypotenuse
and $a$ and $b$ denote the lengths of the other two sides, we have
$$a^2 + b^2 = c^2$$
```
The previous was \@ref(thm:pyth)
并使用pdf_book
,word_document2
,gitbook
进行渲染会导致:
PDF :按预期工作。
DOCX:意外的行为。根本不出现!
HTML:正常工作。
链接的Bookbook中有评论:
我们试图使所有这些定理和证明环境都能正常工作 开箱即用,无论您的输出是PDF,HTML还是EPUB。
所以这似乎表明编译到Word存在一个已知问题。但是有一些解决方法吗?
就我的情况而言,如果Bookdown无法在pdf,docx和html渲染图之间产生一致的输出,则我基本上不能全部使用。如果确实无法产生一致的输出,我应该使用其他工具吗?
请注意,这与我的问题Consistent math equation numbering in bookdown across pdf, docx, html output有关。