如何使用 pandoc --filter pandoc-citeproc 和 biblatex 的过滤功能?

如何使用 pandoc --filter pandoc-citeproc 和 biblatex 的过滤功能?

我想要用它pandoc制作一个 Word 文档来过滤一些书目条目。

在 TeXShop 中生成的以下 LaTeX 代码可以正确过滤。

\documentclass{article}

\usepackage{biblatex}
\usepackage{filecontents}

\begin{filecontents}{mybib.bib}

@article{doc1,
  title = {Title1},
  author = {author},
  date = {2018-04-29},
  keywords = {article}
}

@book{doc2,
  title = {Title1},
  author = {author},
  date = {2018-04-29},
  keywords = {book}
}

\end{filecontents}

\addbibresource{mybib.bib}

\begin{document}
\nocite{*}
\printbibliography[keyword={book}]

\end{document}

但是当我将其另存为时,说sample.tex并运行: pandoc sample.tex -o sample.docx --filter pandoc-citeproc

它不过滤书目条目。谢谢!

相关内容