不同页面不同位置的中心环境

不同页面不同位置的中心环境

我对 LaTeX 不太了解,所以如果我做了一些非常愚蠢的事情,请原谅我。我在使用该book课程时遇到了一些常规格式问题。center环境似乎根据其所在的页面(奇数页或偶数页)具有不同的“中心”。此外,它在大多数页面的顶部写内容,目录并没有真正显示出来。

我把问题的示例代码放在下面。我不确定如何附加生成的 PDF,但我认为只需复制并粘贴代码即可。任何帮助都将不胜感激。我正在使用 TeXstudio 进行编译。

\documentclass[11pt]{book}  %Settings
\parindent0pt  \parskip10pt             
\raggedright                            

\title{\bf Random Title}    %Info   
\author{Some Author}              
\date{\today}                           

\begin{document}                       
\frontmatter        %Starts roman page numerals                           
\maketitle          %Tittle page
\tableofcontents    %Table of Contents (doesn't print?)
\mainmatter         %Start regular numbers
\part{A Part}                   
\chapter{A chapter}                
A bunch of random text.\\
\bigskip
\bigskip
\bigskip
\begin{center}
Some text\\Some text\\Some text\\Some text\\Some text\\Some text\\
Some text\\Some text\\Some text\\Some text\\Some text\\Some text\\
Some text\\Some text\\Some text\\Some text\\Some text\\Some text\\
Some text\\Some text\\Some text\\Some text\\Some text\\Some text\\
Some text\\Some text\\Some text\\Some text\\Some text\\Some text\\
Some text\\Some text\\Some text\\Some text\\Some text\\Some text\\
\end{center}
\chapter{another chapter}
\end{document}

相关内容