我正在使用报告文档类,并希望将部分和章节标题放在同一页上,并将每个标题放在同一行上。我已经找到了将两个标题放在同一页上的解决方案,但找不到将每个标题放在同一行上的方法。有人知道我必须如何更改下面的 MWE,使其看起来像这样吗:
这是我的 MWE:
\documentclass{report}
\usepackage{titlesec}
\titleclass{\part}{top}
\titleformat{\part}[display]
{\normalfont\huge\bfseries}{\thepart}{20pt}{\Huge\centering}
\titlespacing*{\part}{0pt}{50pt}{40pt}
\titleclass{\chapter}{straight}
\titleformat{\chapter}[display]
{\normalfont\LARGE\bfseries}{\thechapter}{1em}{}
\titlespacing*{\chapter}{0pt}{-11pt}{11pt}
\begin{document}
\part{part heading}
\chapter{chapter heading}
text starts here
\end{document}