左邊距大於右邊距

左邊距大於右邊距

我的左邊距比右邊距大。我沒有對邊距大小進行任何明確的更改。我正在用 Texmaker 編譯為 PDF。我正在使用以下軟體包。

\documentclass [MS] {uclathes}
\usepackage{chngcntr}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{url}
\usepackage{listings}
\usepackage{color}
\usepackage{apacite}
\usepackage[english]{babel}
\usepackage{csquotes}
\MakeOuterQuote{"}
\counterwithout*{footnote}{chapter}

唯一提到 leftmargin 的是這裡.cls

% VERSE
%   The verse environment is defined by making clever use of the
%   list environment's parameters.  The user types \\ to end a line.
%   This is implemented by \let'in \\ equal \@centercr.
%
\def\verse{\let\\=\@centercr  
  \list{}{\itemsep\z@ \itemindent -1.5em\listparindent \itemindent 
          \rightmargin\leftmargin\advance\leftmargin 1.5em}\item[]}
\let\endverse\endlist

% QUOTATION
%   Fills lines
%   Indents paragraph
%   
\def\quotation{\list{}{\listparindent 1.5em
    \itemindent\listparindent
    \rightmargin\leftmargin\parsep 0pt plus 1pt}\item[]}
\let\endquotation=\endlist

% QUOTE -- same as quotation except no paragraph indentation,
%
\def\quote{\list{}{\rightmargin\leftmargin}\item[]}
\let\endquote=\endlist

% DESCRIPTION 
%
%  To change the formatting of the label, you must redefine 
%  \descriptionlabel.  

\def\descriptionlabel#1{\hspace\labelsep \bfseries #1}
\def\description{\list{}{\labelwidth\z@ \itemindent-\leftmargin
       \let\makelabel\descriptionlabel}}

\let\enddescription\endlist

\newdimen\descriptionmargin
\descriptionmargin=3em

UCLAthes 的來源可以在這裡找到

我沒有任何 BCOR。有其他地方會發生綁定校正嗎?

我已經審查了這些問題,但無濟於事。 為什麼我的左邊距比右邊距稍大 左邊距比右邊距寬

編輯;即使添加後:

\usepackage[pass,letterpaper]{geometry}

結果還是沒變

在此輸入影像描述

答案1

\leftmargin與頁面尺寸無關:它是與列表有關的參數。

班級設定

\textwidth=6.5in
\textheight=9in
\oddsidemargin=0.0pt
\evensidemargin=0.0pt

由於美國信紙的寬度為 8.5 英寸,高度為 11 英寸,這意味著每邊留有 1 英寸的邊距。班上設定紙張寬度和高度,因此預設 A4 紙張獲勝(這是所有標準 TeX 發行版的預設設置,除非明確設定為其他紙張尺寸)。

如果你添加\usepackage[pass,letterpaper]{geometry},你會得到類似的東西

在此輸入影像描述

邊距相等的地方。

相關內容