更改报告类文档中章节标题的样式

更改报告类文档中章节标题的样式

我正在使用这种页码:

\documentclass[12pt,a4paper,twoside]{report}
\begin{document}
\part{Part name}
...
\chapter{Chapter name}
...
\section{Section name}
...
\subsection{Subsection name}
\end{document}

在章节部分中给出了以下结果:

在此处输入图片描述

但我想实现不同的章节格式,如下所示:

在此处输入图片描述

在不改变文档报告类别的情况下这可能吗?

答案1

-外貌titlesec

\documentclass{report}
\usepackage{titlesec}
  \titleformat{\chapter}[hang]
    {\normalfont\huge\bfseries}
    {\thechapter}{20pt}{\huge}

\begin{document}
\chapter{Chapter name}
...
\section{Section name}
...
\subsection{Subsection name}
\end{document}

输出

相关内容