如何制作大胆的关键词?

时间:2016-04-17 12:03:28

标签: latex beamer

我想在铸造包装手册中使用加粗渲染源代码的粗体字体。目前关键字采用通常的字体。

\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}

结果:
enter image description here

1 个答案:

答案 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}

enter image description here

有关详细信息,请参阅Using \ttfamily with \bfseries (or how to enable bold in fixed-width font)