更改节标题的格式

更改节标题的格式

我希望我的文档有如下章节标题:

在此处输入图片描述

我怎样才能在 LaTeX 中实现这一点?

答案1

对于您的最终解决方案,请根据需要定义深红色,并将其替换为我的建议中的“红色”。请注意,在下面的示例中,给定的设计也适用于部分格式。

代码

\documentclass[11pt]{article}
\usepackage{lipsum}
\usepackage{xcolor}
\usepackage{titlesec}
  \titleformat{\section}
  {\normalfont\Large\itshape\color{red}}{%
    \hspace*{-4.5em}\rule[-1.35mm]{4.5em}{1.25em}
    {\color{white}\hspace{-1cm}\normalfont\thesection\hspace{5pt}}
  }{1em}{}
  \titleformat{\subsection}
  {\normalfont\large\itshape\color{red}}{%
    \hspace*{-4.5em}\rule[-1.35mm]{4.5em}{1.25em}
    {\color{white}\hspace{-1cm}\normalfont\thesubsection\hspace{5pt}}
  }{1em}{}

\begin{document}
\section{Introduction}
\lipsum[1]
\subsection{Laplace Transformation}
\lipsum[2-4]
\end{document}

输出

在此处输入图片描述

相关内容