我想在铸造包装手册中使用加粗渲染源代码的粗体字体。目前关键字采用通常的字体。
\usepackage[table]{xcolor}
\usepackage{minted}
\definecolor{lightlightgray}{gray}{0.9}
\begin{document}
\begin{minted}
{cpp}
// class A
class A {
int boo;
};
\end{minted}
\end{document}
答案 0 :(得分:1)
问题是Computer Modern Typewriter字体中没有粗体tt系列。请尝试lmodern
:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{minted}
\begin{document}
\begin{minted}{cpp}
// class A
class A {
int boo;
};
\end{minted}
\end{document}
有关详细信息,请参阅Using \ttfamily with \bfseries (or how to enable bold in fixed-width font)。