如何在 \section* 前面放置一个彩色框

如何在 \section* 前面放置一个彩色框

我正在使用 Jesper Ipsen 提供的 MWE以下问题

我打算使用彩色框代替章节编号。我的想法是实现它如下面问题所示

现在唯一要做的就是在创建新部分时轻松地添加这些框,如下所示:

\section*{Time Machines}

我们的想法是让它看起来像这样:

在此处输入图片描述

答案1

正如 skpblack 所评论的,该包titlesec可用于以下用途:

\documentclass{article}

\usepackage{lmodern, titlesec, xcolor}

\titleformat{name=\section,numberless}
{\normalfont\Large\bfseries}
{\color{yellow}\rule{1em}{1em}}
{1em}
{}


\begin{document}

\section{Another day in paradise}

A regular numbered section

\section*{Another night in paradise}

A starred section that has a coloured box

\end{document}

这使

在此处输入图片描述

对于间距等的微调,请参阅titlesec文档。

相关内容