html 导出中的 emacs org-mode \label

emacs org-mode \label in html export

我想将其中带有标签乳胶公式的 org-mode 文件导出到 HTML 而输出中没有 \label{eq:1}。你知道怎么做吗?

您可以尝试这样的操作(假设您使用的是 org-ref https://github.com/jkitchin/org-ref),它将 ref link 导出到 html:

* equations in html

See ref:eq-1.



#+BEGIN_HTML
<div id="eq-1">
#+END_HTML
\begin{equation}
e^x = 4
\end{equation}

这导出为类似:

<div id="eq-1">
\begin{equation}
e^x = 4
\end{equation}

<p>
See <a href="#eq-1">eq-1</a>.
</p>

您可以使用 CSS 隐藏它,例如:

  .figure-number {
    display: none;
  }