我可以更改行号颜色吗?

我可以更改行号颜色吗?

我尝试将lineno包添加到我的文档中。这很好,但如果可能的话,我想将数字改为不同的颜色,例如浅灰色或蓝色。

我可以在添加包的样式文档中执行此操作吗?我已经在使用该xcolor包了。

答案1

如果您想将行号的颜色更改为蓝色,请在序言中使用此颜色:

\renewcommand{\linenumberfont}{\normalfont\bfseries\small\color{blue}}

完整代码:

\documentclass{article}
\usepackage{xcolor}
\usepackage{lineno}
\usepackage{lipsum}
\renewcommand{\linenumberfont}{\normalfont\bfseries\small\color{blue}}
\begin{document}
\linenumbers
\lipsum[2-4]
\end{document}

在此处输入图片描述

相关内容