使用一个命令同时使用 textbf 和 textit 的方法

使用一个命令同时使用 textbf 和 textit 的方法

您好,我需要制作一个文档,其中需要同时使用大量的 \textbf 和 \textit,因此我尝试创建一个同时使用这两个命令的新命令,但是它给出了一个错误,而我不知道如何以正确的方式执行此操作,我使用了:

\newcommand{\bfit}[1]{\textbf{\textit{#1}}}

知道如何做吗?

编辑:出现的错误是这样的(我在 Texstudio 上): 在此处输入图片描述

答案1

似乎在 WinEdt 中与 MikTeX 配合使用效果很好。以下是供参考的 MWE:

\documentclass{article}
\newcommand{\bfit}[1]{\textbf{\textit{#1}}}
\begin{document}
  \textbf{\textit{Hello World}} \par
  \bfit{Using new command}
\end{document} 

在此处输入图片描述

相关内容