答案1
我们如何才能最好地结合这两个命令
\text
和\color
?
嵌套指令
\text{\color{red}these words are red}
在文本模式和数学模式下均按预期工作。
答案2
从输出来看,您似乎正在数学模式下工作。在这种情况下,命令\text{}
和的组合\textcolor{}{}
应该足够了。
梅威瑟:
\documentclass{article}
\usepackage{amsmath} % for \text command
\usepackage{xcolor} % for \textcolor command
\begin{document}
$\text{\textcolor{red}{these words are red}}$
\end{document}
答案3
我忘了在需要着色的文本周围加上花括号。
以下方法很有效
\color{maroon}{\text{these words are maroon}}