使用 tikz 创建特定章节标题格式样式

使用 tikz 创建特定章节标题格式样式

在此处输入图片描述

你好,我想重现这个特定的章节标题格式。我是 Latex 的新手,不太了解如何使用 tikz(我在论坛上看到一些使用它的帖子),所以我没有代码可以给你看。有人可以帮我写代码吗?

我正在使用书籍类,我想为盒子和其顶部的标记“章节”使用一些我自己的颜色。

提前感谢那些愿意提供帮助的人!

答案1

我尝试使用tikztitlesec包裹。

\documentclass[a4paper]{report}
\usepackage{tikz}
\usepackage[explicit]{titlesec}

\usepackage{lipsum}

\titleformat{\chapter}[hang]
            {\sffamily}
            {}
            {0pt}
            {%
            \noindent%
            \begin{tikzpicture}%
                \node[above,yshift=4pt,font=\fontsize{15}{15}\mdseries] {CHAPTER};
                \node[xshift=0.15\linewidth,below right,text width=0.72\linewidth,font=\fontsize{28}{34}\bfseries] {#1};
                \node[below,fill=black,text=white,font=\fontsize{48}{48}\bfseries,inner sep=22pt] {\thechapter};
            \end{tikzpicture}%
            }
            []

\titlespacing{\chapter}{0pt}{20pt}{70pt}[0pt]

\begin{document}
    \chapter{Stuff for the title}

    \lipsum[1-3]
    
    \chapter{A long title with two lines}
    
    \lipsum[1-3]
    
    
    
    \chapter{Yet another long title with three lines of text}
    
    \lipsum[1-3]
\end{document}

材料1

东西2

东西3

相关内容