使用 mcode 包更改代码字体

使用 mcode 包更改代码字体

我正在使用mcode包将 matlab 代码插入到我的文档中。我会更改默认字体。我应该使用什么命令来获取此字体?

在此处输入图片描述

答案1

mcode.sty文件有一个“在此自定义”部分。

改变

\def\lstbasicfont{\fontfamily{pcr}\selectfont}

进入

\def\lstbasicfont{\ttfamily}

您将获得默认的固定宽度字体,而不是 Courier。或者

\def\lstbasicfont{\fontfamily{lmtt}{\selectfont}}

这将选择 Latin Moder Typewriter 字体,该字体也有粗体变体。

相关内容