我的文档类是article
。a4paper
我想要的正文边距是:
top: 1 inch
bottom: 1 inch
right: 0.5 inch
left: 1.5 inch
标题页的四边应有 1 英寸的边距,但论文正文的边距应如上所述。
我尝试使用该geometry
包来指定这些边距。但结果并不如我所愿。我该如何实现呢?
答案1
使用geometry
包裹可以使用\newgeometry{<settings>}
宏在文档中间切换布局。当包加载时,我们首先设置标题页的初始布局(1in
四面)
\usepackage[showframe,paper=a4paper,margin=1in]{geometry}% http://ctan.org/pkg/geometry
然后在标题页后使用
\newgeometry{top=1in,bottom=1in,right=0.5in,left=1.5in}
以下是完整的 MWE:
\documentclass{article}
\usepackage[showframe,paper=a4paper,margin=1in]{geometry}% http://ctan.org/pkg/geometry
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\begin{document}
\begin{titlepage}
\thispagestyle{empty}
\author{Somebody Important}
\title{Something just as important}
\maketitle
\lipsum[1-2]
\end{titlepage}
\newgeometry{top=1in,bottom=1in,right=0.5in,left=1.5in}
\section{First section} \lipsum[1-4]
\section{Second section} \lipsum[5-8]
\section{Third section} \lipsum[9-12]
\section{Last section} \lipsum[13-16]
\end{document}
lipsum
提供虚拟文本,同时仅showframe
选择geometry
框架页面来突出显示文本块和其他区域的布局。
答案2
使用\restoregeometry
产生相同的结果:
\documentclass{article}
\usepackage[showframe,paper=a4paper,top=1in,bottom=1in,right=0.5in,left=1.5in]{geometry}% http://ctan.org/pkg/geometry
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\begin{document}
% Declare new goemetry for the title page only.
\newgeometry{margin=1in}
%---------------------------------------------
\begin{titlepage}
\thispagestyle{empty}
\author{Somebody Important}
\title{Something just as important}
\maketitle
\lipsum[1-2]
\end{titlepage}
% Ends the declared geometry for the titlepage
\restoregeometry
%--------------------------
\section{First section} \lipsum[1-4]
\section{Second section} \lipsum[5-8]
\section{Third section} \lipsum[9-12]
\section{Last section} \lipsum[13-16]
\end{document}
得出:
答案3
我建议将标题页设置为单独的小型 tex 文件,并使用包将生成的 pdf 包含在主文档中pdfpages
。
无论如何,标题页的内容都是静态的,需要特别注意,并且是文档中唯一不需要语义标记的地方(希望如此)。没有必要将它与其他内容放在一起。它还可以确保页数正确,这意味着您不会遇到麻烦hyperref
。
\documentclass{report}
\usepackage{pdfpages}
\usepackage{hyperref}
\begin{document}
\includepdf{titlepage}
%Acknowledgements, Dedication, Wombats, Ducks etc.
\chapter{Introduction}
\end{document}