修改\ section {}以使其与LaTeX一起变得丰富多彩

pro*_*eek 22 latex

如何更改\ section {}样式?特别是我想改变节标题的颜色.

我碰巧在Edward R. Tufte(http://code.google.com/p/tufte-latex/)之后找到了一些简洁的风格,我正试图找到一种修改剖面颜色的方法.

添加

颜色包工作正常,但事情是颜色章节号没有改变.

\section{\color{Red}ELPA}

http://img175.imageshack.us/img175/4134/screenshot20100718at417.png

Clo*_*ger 27

使用包titlesec.

把它放在LaTeX标题中(之前\begin{document})

\usepackage{titlesec}

\titleformat{\section}
{\color{red}\normalfont\Large\bfseries}
{\color{red}\thesection}{1em}{}
Run Code Online (Sandbox Code Playgroud)


pro*_*eek 5

\usepackage{sectsty}
%\allsectionsfont{\color{blue}\itshape\underline}
\sectionfont{\color{blue}\itshape\selectfont}
\subsectionfont{\color{green}\itshape\selectfont}

我可以用sectsty风格改变颜色.