我需要在标题定义中设置背景颜色,但我不知道该怎么做。我有下一个定义:
\pretitle{\vspace{-90pt} \begin{flushleft} \HorRule \fontsize{20}{20} \usefont{OT1}{phv}{b}{n} \color{AzulUnir} \selectfont }
\title{This is the title of the template article}
\posttitle{\par\end{flushleft}\vskip 0em}
\preauthor{\begin{flushleft} \large \lineskip 0em \usefont{OT1}{phv}{b}{sl} \color{AzulUnir}}
\author{Firstname Lastname,
\postauthor{\footnotesize \usefont{OT1}{phv}{m}{sl} \color{Black} Universdad \par\end{flushleft}\HorRule}
[编辑] 我正在使用这个模板http://www.howtotex.com/download/2col-color-art-howtotex.tex但我需要自定义标题和部分中的背景颜色,但我不知道如何使它们都不使用。
答案1
目前还不清楚你想做什么;但是这会将标题的背景颜色更改为绿色(选择您喜欢的颜色)
\newsavebox{\titlebox}
\pretitle{%
\vspace{-30pt}
\noindent\HorRule\\[1ex]
\begin{lrbox}{\titlebox}
\begin{minipage}{\dimexpr\textwidth-2\fboxsep\relax}\raggedright
\fontsize{50}{50}\usefont{OT1}{phv}{b}{n}\color{DarkRed}\selectfont
}
\posttitle{%
\par
\end{minipage}\end{lrbox}
\colorbox{green}{\usebox{\titlebox}}\par
\vskip 1ex}
\title{This is the title of the template article}
该代码应该代替您的原始代码\pretitle
和\posttitle
定义。