未使用 Pandoc 创建的带有 tocloft 的方程式列表

未使用 Pandoc 创建的带有 tocloft 的方程式列表

我想在我的论文中创建一个方程式列表,并使用创建我自己的版本以供 pandoc 使用:

---
header-includes: |
    \usepackage{amsmath}
    \usepackage{tocloft}
---
\newcommand{\listequationsname}{Formelverzeichnis}
\newlistof{myequations}{equ}{\listequationsname}
\newcommand{\myequations}[1]{%
\addcontentsline{equ}{myequations}{\protect\numberline{\theequation}#1}\par}
\listofmyequations
\newpage

\begin{equation}
f_d = \frac{2 \cdot v \cdot f_O}{c}
\end{equation}
\label{eq:Frequenzverschiebung}
\myequations{Frequenzverschiebung}


\begin{equation}
v= f_d \cdot \frac{c}{2*f_O} 
\end{equation}
\label{eq:geschwindigkeit}
\myequations{Geschwindigkeit}

我使用以下命令构建它:

#!/bin/sh
PATH=$PATH:/home/moritz/.cabal/bin/ /home/moritz/.cabal/bin/pandoc --filter pandoc-citeproc --bibliography quellen.bib --csl=styles/din1505.csl --filter pandoc-include-code -V hyphens=URL -V breakurl --from=markdown --output=text.pdf  text.md \

这是产生这样的结果:

没有方程式列表

如您所见,尚未创建列表。

我曾尝试创建上述帖子提供的 MWE,并且在使用 pdflatex 从 .tex 编译为 pdf 时,它可以正常工作,所以我猜测问题出在与 pandoc 的结合上。

相关内容