提问于:
浏览数:
3051
如何让`\chapter`紧跟`\part`(不分页)
MWE如下:
```tex
\documentclass[openany]{book}
\usepackage{lipsum}
\begin{document}
\part{The first part}
\chapter{The first chapter}
\lipsum[1]
\end{document}
```
2 回答
3
```tex
\documentclass[openany]{book}
\usepackage{titlesec}
\titleclass{\part}{top}
\titleformat{\part}[display]{\normalfont\huge\bfseries}{\centering\partname\ \thepart}{20pt}{\Huge\centering}
\titlespacing*{\part}{0pt}{50pt}{40pt}
\titleclass{\chapter}{straight}
\titleformat{\chapter}[display]
{\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Huge}
\titlespacing*{\chapter} {0pt}{50pt}{40pt}
\usepackage{lipsum}
\begin{document}
\part{The first part}
\chapter{The first chapter}
\lipsum[1]
\end{document}
```
见 [tex.stackexchange.com](https://tex.stackexchange.com/questions/42526/how-to-remove-page-break-after-part-in-report-book)
-
谢谢,问题解决了 – sikouhjw 2019-09-27 13:01 回复
0
只需要重定义格式就好了, `titlesec`就可以, 楼上的回答就可以了.
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。