报表类中如何设置章节样式?

报表类中如何设置章节样式?

我想将章​​节设置为看起来像“更大”的部分。

现在在report课堂上我有这样的风格:

第1章

介绍

1.1. 章节

我想要实现的目标是:

  1. 介绍

1.1. 章节

我不想改变文档类别。

答案1

您可以使用标题安全包。例如:

\documentclass{report}
\usepackage{titlesec}
\titleformat{\chapter}
  {\normalfont\LARGE\bfseries}{\thechapter}{1em}{}
\titlespacing*{\chapter}{0pt}{3.5ex plus 1ex minus .2ex}{2.3ex plus .2ex}
\begin{document}
\chapter{Introduction}
\section{Section}
\end{document}

titlesec 示例

软件包文档会告诉您更多信息。texdoc titlesec在命令提示符下键入或按照此答案开头的 CTAN 链接操作。

答案2

使用 KOMA-Script 类

\documentclass[numbers=enddot]{scrreprt}

相关内容