使用changepage
(或過期的chngpage
)包中的adjustwidth
環境。 changepage
包的文檔位於changepage.sty
文件本身中。
adjustwidth
環境可用於臨時調整文本塊的寬度。請注意,由於LaTeX將文本分割成頁面的方式,如果左右頁邊距在奇數頁和偶數頁上有所不同,您應該避免將adjustwidth
環境用於將在單個頁面上分割的文本博客。
假設您的文檔有1英寸的內邊距和2英寸的外邊距。如果你想在頁面上居中物理標題(即具有有效的1英寸保證金爲內部和外部),可以使用下面的代碼:
\usepackage{changepage}% or chngpage -- note that the syntax differs slightly between the two packages
\begin{adjustwidth*}{}{-1in}% leave left margin alone, decrease right margin by 1in
%\begin{adjustwidth}[]{}{-1in}% same as above, but this syntax is for the chngpage package
\begin{center}
My Title\par
Author Name\par
Whatever you want on your title page
\end{center}
\end{adjustwidth*}
的adjustwidth
環境有兩個參數:調整爲左邊界和右邊界。如果您將其中一個參數留空,則該保證金將不會更改。
如果您使用的是changepage
包,adjustwidth*
環境將根據您是在奇數頁還是偶數頁上做出正確的選擇。 chngpage
包沒有星號環境,所以你必須提供一個空的可選參數[]
以獲得相同的效果。
有關changepage
包裝的更多信息,請參閱其CTAN page。
這個問題似乎是題外話題,因爲它屬於tex.stackexchange.com – BartoszKP 2013-10-01 14:47:57