Minted 更改文字颜色

Minted 更改文字颜色

我使用 minted 包在报告上放置了一些 C 代码,但是注释颜色是蓝色,而我希望它是灰色。

\documentclass[11pt]{article}
\usepackage[cache=false]{minted}

\begin{document}
\begin{minted}[linenos]{c}
#include<Wire.h> //Wire library allow us to communicate with the I2C that we are using 
\end{minted}
\end{document}

答案1

minted 有多种配色方案,其中几种有灰色注释。其中一个例子是样式pastie

\documentclass[11pt]{article}
\usepackage[cache=false]{minted}
\usemintedstyle{pastie}

\begin{document}
\begin{minted}[linenos]{c}
#include<Wire.h> //Wire library allow us to communicate with the I2C
\end{minted}
\end{document}

在此处输入图片描述

您可以在以下位置找到不同风格的示例https://help.farbox.com/pygments.html。这些示例用于 Python 突出显示,但注释的颜色(#在 Python 中以 开头)对于其他语言(如 C)是相同的。您也可以在 上轻松地在自己的代码中尝试这些样式https://pygments.org/demo/。请注意,您的系统上可能并非所有样式都可用(但很可能可用)。

相关内容