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
설명서를 참조하세요.