titlesec 中的背景颜色

titlesec 中的背景颜色

我正在使用该titlesec包来格式化部分标题。我想更改框架形状的背景颜色。具体来说,我想获得一个实心(即框架和背景颜色相同)蓝色框架和白色文本。

我尝试了一种简单的方法,使用它\colorbox作为格式,\titleformat但它似乎不起作用:

\documentclass{article}
\usepackage{xcolor}
\usepackage{titlesec}

\setcounter{secnumdepth}{0}

\newcommand{\mybox}[1]{
\colorbox{blue}{\textcolor{white}{#1}}
}

\titleformat{\section}
[frame]
{
\vspace{.8ex}%
\color{blue}\Large\normalfont\sffamily\mybox
}
{\thesection.}
{.5em}
{}

\begin{document}
\section{First section}
The first section begins here\ldots
\section{Second section}
The second section begins here\ldots

\end{document}

如果有人能解释我如何才能获得期望的结果,我将非常感激。

答案1

这就是你想要的东西吗?

\documentclass{article}
\usepackage[svgnames]{xcolor}
\usepackage[explicit]{titlesec}


\titleformat{\section}
[display]
{\filcenter
\Large\normalfont\sffamily\color{white}
}
{}
{0pt}
{\colorbox{RoyalBlue!80}{\parbox{\textwidth}{\centering\thesection\strut\\[1ex] #1\vskip 0.5ex}}}

\begin{document}
\section{First section}
The first section begins here\ldots
\section{Second section}
The second section begins here\ldots

\end{document} 

在此处输入图片描述

相关内容