使用 pandoc 为标题创建标签

使用 pandoc 为标题创建标签

如何使用 Pandoc 为标题创建标签?我以为我能够在 pandoc 中直接使用 latex 宏,但是,对于创建标签,它似乎不起作用。这是 pandoc 命令:

pandoc myfile.md -f markdown-auto_identifiers -t latex --biblatex --top-level-division=chapter -o myfile.tex

我的 pandoc 文件中的这一行

# A fancy first chapter # \label{Afancyfirstchapter}

生产

\chapter{\texorpdfstring{A fancy first chapter \#\label{Afancyfirstchapter}}{A fancy first chapter \#}}

在输出中。

答案1

标签是使用小写且不带空格的标题自动创建的,但您可以使用 指定另一个{#mylabel},例如test.md

# AAAA {#bbb} 

### CCCC

pandoc borra.md -t latex产品

\section{AAAA}\label{bbb}

\subsubsection{CCCC}\label{cccc}

相关内容