论文模板为 B5 纸张大小。边距如何?

论文模板为 B5 纸张大小。边距如何?

我成功地将从以下网站下载的论文模板的纸张尺寸从 A4 更改为 B5http://www.latextemplates.com/template/masters-doctoral-thesis

main.tex通过设置twoside和添加以下行来修改该文件:

\usepackage{calc}
\usepackage[dvips=false,pdftex=false,vtex=false,b5paper]{geometry}
\geometry{bindingoffset=5mm}
\usepackage[cam,b5,center,pdftex]{crop}

页边距在文件第 74 行设置。A4Thesis.cls纸的默认值为:

\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

修改为:

\setmarginsrb   {4.7cm} %leftmargin
                {3.4cm} %topmargin
                {3.4cm} %rightmargin
                {3.4cm} %bottommargin
                {15pt}  % head height
                {0.15in}  % head sep
                {9pt}  % foot height
                {0.3in}  % foot sep

这些设置产生了如下的页面布局。 典型的页面布局 问题是:

  1. B5 纸张尺寸的正确边距是多少?我的大学没有提供任何信息。
  2. main.tex使用我在和中所做的设置Thesis.cls,似乎我只能更改左右边距,因为通过修改其他参数似乎没有任何变化。我把代码弄乱了吗?

答案1

我已通过将模板升级到最新版本解决了我的问题,其中包括文件中边距的规范main.tex

\geometry{
    paper=b5paper,
    inner=16mm,         % Inner margin
    outer=24mm,         % Outer margin
    bindingoffset=10mm, % Binding offset
    top=20mm,           % Top margin
    bottom=28mm,        % Bottom margin
    %showframe,         % show how the type block is set on the page
}

该类文件现在名为MastersDoctoralThesis.cls,包含以下代码,我没有改变

\RequirePackage{geometry}
\geometry{
    headheight=4ex,
    includehead,
    includefoot
}

\raggedbottom

最后,我发现了一些关于使用边距的经验法则这里(用意大利语)。

相关内容