转移位置

转移位置

我用这个来输入一本书(这不是完整的命令)。但我想让页面从最左上角开始。有什么办法吗?

\documentclass{report}
\usepackage{titlesec,amssymb}
\begin{document}
\tableofcontents}
\setcounter{chapter}{2}
\chapter{\mbox{SEQUENCES AND SERIES}}
{\large{Now that the foundations of the real number system $\mathbb{R}$ have been added}
\end{document}

这是我得到的输出。有没有办法将它移到最左上角或类似的地方?

我想也许我可以尝试使用 pstricks 并为其分配位置。但是有没有更好的方法呢?

答案1

使用已加载的包titlesec,并使用\titlespacing来设置章节标题周围的空格。在\chapter使用之前必须进行配置\titleformat

A

\documentclass{report}
\usepackage{titlesec,amssymb}

\usepackage{showframe} % only to show margins

\titleformat{\chapter}[display]   
{\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Huge}   
\titlespacing*{\chapter}{0pt}
{-20pt}% space before
{35pt}% space after


\begin{document}
    \tableofcontents
\setcounter{chapter}{2}

\chapter{\mbox{SEQUENCES AND SERIES}}

{\large Now that the foundations of the real number system $\mathbb{R}$ have been added}
\end{document}

相关内容