原因:Minted 包带有规则颜色错误?

原因:Minted 包带有规则颜色错误?

我在使用 minted 包时遇到问题,我的 mwe 如下:

\documentclass{article}
\usepackage{minted}
\usepackage{xcolor}
\definecolor{Rub}{HTML}{061089}
\begin{document}
\begin{minted}[frame=lines,rulecolor=Rub]{c}
int main() {
printf("hello, world");
return 0;
}
\end{minted}
\end{document}

我用完后规则颜色 =红色和其他颜色,我得到这样的:

错误

如何解决?

答案1

在此处输入图片描述

您需要将可选参数放在正确的位置,而且有点奇怪的是,的值rulecolor显然是一个命令而不是颜色名称

\documentclass{article}

\usepackage{minted}
\definecolor{red}{rgb}{1,0,0}
\begin{document}

%\tracingall
\begin{minted}[rulecolor=\color{red},frame=lines]{c}
int main() {
printf("hello, world");
return 0;
}
\end{minted}
\end{document}

相关内容