2

我已阅读指南http://johnmacfarlane.net/pandoc/README.html#verbatim-code-blocks

在示例中

~~~~ {#mycode .haskell .numberLines startFrom="100"}
qsort []     = []
qsort (x:xs) = qsort (filter (< x) xs) ++ [x] ++
               qsort (filter (>= x) xs)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

如何\label{code}在此代码块中添加乳胶标签,以便我可以引用它\ref{code}

4

1 回答 1

1

根据您链接到的页面#mycode位是代码块的标识符,这相当于 LaTeX 的\label. 您可以使用内部链接和标识符引用此代码块#mycode

于 2012-09-26T18:48:55.057 回答