我想要用它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
它不过滤书目条目。谢谢!