一頁的左邊距較大。另一頁的右邊距較大

一頁的左邊距較大。另一頁的右邊距較大

如何設定頁邊距,使一頁左側邊距較大,另一頁右側邊距較大?

在此輸入影像描述

更新:我正在使用article文檔類。

答案1

我建議您使用article選項載入文檔類別twoside

在此輸入影像描述

請參閱使用者指南的第 3 節幾何學包以獲取有關設定頁邊距的更多資訊。特別是,如果您使用套件來設定頁面參數,則當文件類別生效時geometry,您應該使用參數innerand outer,而不是leftand 。righttwoside

\documentclass[twoside]{article}
\usepackage{lipsum} % filler text
\usepackage[showframe,marginparwidth=0pt]{geometry}

\begin{document}
\lipsum[1-22]
\end{document} 

答案2

您可以使用以下行程式碼:

\usepackage[paperwidth=17.5cm,paperheight=23cm, inner=1.5cm,outer=5.5cm,top=3cm,bottom=3cm]{geometry}

相關內容