如何在章节编号和章节标题之间插入换行符:
chapter 1
Introduction
blahblah
我当前的代码(使用包并且之前titlesec
有一个不起作用)只给我\newline
\chaptertitlename
chapter 1 Introduction
blahblah
代码:
\documentclass{report}
\usepackage{lipsum}
\usepackage{titlesec}
\titleformat{\chapter}
{\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Huge}
\titlespacing*{\chapter}{0pt}{-35pt}{0pt}
\begin{document}
\chapter{Introduction}
\lipsum[1]
\end{document}
答案1
尝试一下这个代码。
\documentclass{report}
\usepackage{lipsum}
\usepackage{titlesec}
\titleformat{\chapter}[display] % changed
{\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter }{0pt}{\Huge} % changed
\titlespacing*{\chapter}{0pt}{-35pt}{20pt} % changed
\begin{document}
\chapter{Introduction}
\lipsum[1]
\end{document}