我为简历模板的章节定义了一个新环境。我不确定如何在此代码中将章节标题居中。
\newenvironment{rSection}[1]
{
% 1 input argument - section name
\sectionskip
\begingroup
\colorbox{mygrey}
{
{\rlap{\MakeUppercase{\bf #1}}\hspace{\linewidth}\hspace{-2\fboxsep}}
}
\endgroup
\begin{list}{} { \setlength{\leftmargin}{0 em} } \item[] } { \end{list}
}
答案1
尝试像这样使用中心环境:
\begin{center}
Section title
\end{center}
或者像这样命令居中:
\begingroup
\centering
\colorbox{mygrey}
{
{\rlap{\MakeUppercase{\bf #1}}\hspace{\linewidth}\hspace{-2\fboxsep}}
Section title }
....
....