gpt4 book ai didi

latex - 如何让 minted 做粗体关键字?

转载 作者:行者123 更新时间:2023-12-01 09:25:33 28 4
gpt4 key购买 nike

我想在 minted 包手册中为 minted 渲染源代码使用粗体字体。目前关键字是常用字体。

\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

最佳答案

问题是 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)详情。

关于latex - 如何让 minted 做粗体关键字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36676229/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com