【发布时间】:2011-09-01 10:03:37
【问题描述】:
如何设置 org-mode 以便在 HTML 导出中包含\cite LaTeX 命令的结果?
例子:
Gulliver's Travels
My father had a small estate in Nottinghamshire: I was
the third of five sons.\cite{swift1726}
\printbibliography
#+LaTeX_HEADER: \usepackage{biblatex}
#+LaTeX_HEADER: \bibliography{classics}
LaTeX 导出非常棒。但是 HTML 预期会产生所有引用,因为它们在源中。但是如何实现这样的输出:
...
<title>Gulliver's Travels</title>
...
<p>My father had a small estate in Nottinghamshire: I was
the third of five sons.[<a href="#swift1726">1</a>]</p>
...
<p id="swift1726">[1] J. Swift. <i>Gulliver's Travels</i>. 1726.</p>
...
【问题讨论】: