章节号和标题在同一行

章节号和标题在同一行

我需要在同一行中添加章节编号和标题并居中:例如“第 2 章 章节标题”。

我的代码是

\documentclass[12pt,a4paper,oneside]{report}

\usepackage[left=1.5in,top=1in,right=1in,bottom=5em]{geometry}

\begin{document}

\chapter{INTRODUCTION}

\section{ sec1}

....................

\subsection{subsec1}

..................

\end{document}

我需要做什么?

答案1

titlesec软件包允许您自定义标题的外观。

编辑:我根据 Gonzalo Medina 的评论更新了我的解决方案。

\documentclass{book}

\usepackage{titlesec}
\usepackage{lipsum}


\titleformat{\chapter}
{\filcenter\normalfont\Large\bfseries}
{\chaptertitlename~\thechapter} {0.5em} {}


\begin{document}
  \chapter{First chapter}

    \lipsum[1-3]

\end{document}

在此处输入图片描述

相关内容