我使用 pandoc 在 markdown 和 latex 中编译我的文本。我需要在 latex 循环中引用我的来源,但它在结果中显示不正确。我使用 .bib 文件提供有关我的来源的信息。
---
link-citations: true
bibliography: [D:\bib.bib]
cite-method: biblatex
header-includes:
- |
````{=latex}
\usepackage{mdframed}
\usepackage{tcolorbox}
\usepackage{pgf}
\usepackage{verbatim}
\usepackage{etoolbox}
\usepackage{environ}
\usepackage{xcolor}
````
...
\vfill{{\begin{tcolorbox}
\begin{center}
\section*{Text}
test @source
\end{center}
\end{tcolorbox}}}
\vfill
我的围兜文件:
@misc{source,
title = {test},
url = {test},
}
我不明白的是它在 markdown 中有效,如果我这样做,它会按预期返回带有 [1] 的文本
这是我用来编译的命令
pandoc .\Untitled.md -o Untitled.pdf --from markdown --citeproc --bibliography=D:\bib.bib
谢谢您的帮助