在 Latex 中,如何增加书写数学模式时的字体颜色大小

在 Latex 中,如何增加书写数学模式时的字体颜色大小

我想写颜色方程式并增加字体

答案1

\documentclass{article}
\usepackage{xcolor,lipsum}
\begin{document}
\lipsum[1]
{\LARGE\color{red}
\begin{equation}
y = x^2
\end{equation}
}
\lipsum[3]
\end{document}

在此处输入图片描述

如果你总是希望equation环境是\LARGEred那么从长远来看,你可以节省一些击键时间

\documentclass{article}
\usepackage{xcolor,lipsum,etoolbox}
\AtBeginEnvironment{equation}{\LARGE\color{red}}
\begin{document}
\lipsum[1]
\begin{equation}
y = x^2
\end{equation}
\lipsum[3]
\end{document}

相关内容