我正在尝试使用 pandoc 将文档从 latex 转换为 rtf。除了引文的颜色外,转换工作正常。通常的 latex 管道会产生预期的结果:
但是.rtf 文件没有(没有颜色,加上其他我已经知道如何修复的差异):
这是 .tex 文件:
\documentclass[12pt]{article}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage[colorlinks=true,citecolor=red]{hyperref}
\begin{document}
\section{Introduction}
Citation \cite{test}
\bibliographystyle{apalike}
\bibliography{test.bib}
\end{document}
我使用的命令:
pandoc test.tex -f latex -s -o test.rtf --bibliography test.bib
我知道有一些选项可以将变量传递给命令(例如-V citecolor=red
)。我尝试了几种方法(我想说所有最简单的方法)...我觉得我在这里遗漏了一些重要的东西 - 或者 pandoc 实际上无法正确管理它。
谢谢大家!
pandoc 1.19.2.1 texlive 2019
gentoo