每次我想要加粗字体,我希望它的颜色是蓝色。目前,我正在使用:
\textcolor{blue}{\textbf{some bold and colored text}}
为了节省时间,我可以定义一个命令来同时执行这两项操作。我该怎么做?
答案1
简单地
\newcommand\boldblue[1]{\textcolor{blue}{\textbf{#1}}}
答案2
另一种方法是使用 中的字体切换命令\DeclareTextFontCommand
,如下所示:
\DeclareTextFontCommand{\bblue}{\color{blue}\bfseries}