目前,我已经
\section{{\color{red} Conclusion}} \label{sec:conclusion}
这会导致“结论”一词变成红色。但是,第 VI 节编号仍然显示为黑色。有没有办法同时更改 LaTeX 文档中某一节的节标题和编号?
答案1
MWE 会有所帮助,但是我想类似的东西可以解决你的问题:
\documentclass{article}
\usepackage{xcolor}
\begin{document}
\tableofcontents
\section{Before Section}
\def\thesection{\color{red}\Roman{section}}
\section{{\color{red} Conclusion}} \label{sec:conclusion}
\def\thesection{\Roman{section}}
\section{After Section}
Test
\end{document}