更改論文頁邊距

更改論文頁邊距

向使用過此 LaTeX 範本的任何人提出一個簡單問題:

http://www.latextemplates.com/template/masters-Doctor-thesis

關於如何更改左邊距以在一頁上顯示更多單字有什麼想法嗎?

答案1

在檔案中vmargin.sty,邊距可以設定為

\setmargins{leftmargin}{topmargin}{textwidth}{textheight}%
       {headheight}{headsep}{footheight}{footskip}

或與

\setmarginsrb{leftmargin}{topmargin}{rightmargin}{bottommargin}%
         {headheight}{headsep}{footheight}{footskip}

定義參數(leftmargin、topmargin 等)並將此指令放在\begin{document}檔案的前面main.tex

vmargin.sty

例子:

A4 紙,左邊距 30 毫米,上、右、下邊距各 20 毫米,無頁首或頁尾:

\setpapersize{A4}
\setmarginsrb{30mm}{20mm}{20mm}{20mm}{0pt}{0mm}{0pt}{0mm}
\pagestyle{empty}

相同的設定將導致:

\setpapersize{A4}
\setmargnohfrb{30mm}{20mm}{20mm}{20mm}

答案2

您嘗試過該layout套餐嗎?

如果沒有,請嘗試這個,但我不能保證它會起作用......

只需放入\usepackage{layout}序言,然後放在\layout您想要的位置(我在 \begin{document} 之後進行)。它將顯示一個帶有邊距的頁面,以及圖片下方邊距的名稱...

您可以像這樣調整每個邊距的大小:

\setlength{"Name of the margin wo want to resize"}{"length"}在序言中設定 。

這是一個範例\layout在此輸入影像描述

你只需要調整右邊距的大小...

我希望它能與論文一起工作,我還沒有嘗試過......

答案3

使用此模板,您應該能夠設定Thesis.cls文件中的邊距。

在文件中有一個邊距部分如下

    %----------------------------------------------------------------------------------------
   %    MARGINS
    %----------------------------------------------------------------------------------------
    \setmarginsrb  { 1.5in}  % left margin
                            { 0.6in}  % top margin
                            { 1.0in}  % right margin
                            { 0.8in}  % bottom margin
                            {  20pt}  % head height
                            {0.25in}  % head sep
                            {   9pt}  % foot height
                            { 0.3in}  % foot sep

在我使用的版本中,它位於文件的第 74-84 行。如果您編輯這些邊距設置,它應該更改模板上的設置。

相關內容