我正在编写一份文档,需要区分一些文本与其他文本。在上面的例子中,我想区分文本‘密码1’和's723ja0xp' 从剩余文本中删除。我使用了命令{\fontfamily{lmtt9}\selectfont\large password1}
和{\fontfamily{lmtt9}\selectfont\large s723ja0xp}
},效果不错。然而,密码1和s723ja0xp比其余文本更淡。有办法解决这个问题吗?还有,有办法让密码1和s723ja0xp斜体?我尝试过这些命令{\fontfamily{lmtt9}\selectfont\large\textit {password1}}
,{\fontfamily{lmtt9}\selectfont\large\itshape {password1}}
但都失败了。
答案1
您的问题不清楚,因为您没有提供例子,但 lm 打字机有倾斜和倾斜粗体两种形式。
\documentclass{article}
\renewcommand\familydefault{\sfdefault}
\renewcommand{\sfdefault}{phv}% Helvetica (clone)
\renewcommand\ttdefault{lmtt}
\begin{document}
is incorrect because
\texttt{\large password1}
\texttt{\slshape\large password2}
\texttt{\slshape\bfseries\large password3}
is weaker than ...
\end{document}