双面报告中的居中标题页

双面报告中的居中标题页

我正在用双面报告撰写论文。但是,当涉及到标题页时,我想让它居中,即左边距和右边距相等。我该如何仅在标题页上实现这一点?

这是一个最小工作示例,说明了我的意思:

\documentclass[11pt,twoside,a4paper]{report}

\title{The title of my thesis}
\author{My name \\ \\ \\ \emph{Supervisor:} \\ My supervisor's name \\ \\}
\date{\today}

\begin{document}
\maketitle
\end{document}

提前致谢!

答案1

论文标题页和论文封面是有区别的。

标题页位于你的论文内,应遵循默认布局。

封面通常在外面,可以/应该居中。要获得居中的封面,我的方法是将其分离到第二个 tex 文档中,并将其包含在内pdfpages

\includepdf{cover/cover.pdf}

还有我的 cover.tex

\documentclass[
    pdftex,
    fontsize=11pt,
    a4paper
   ]{scrbook}

\usepackage[utf8]{inputenc}
\usepackage[a4paper,includeall,bindingoffset=0cm,margin=2cm,
            marginparsep=0cm,marginparwidth=0cm]{geometry}

\begin{document}

\begin{titlepage}
\thispagestyle{empty}
    ...
\end{titlepage}

\end{document}

这种方法是更好的选择,因为通常您必须将封面和论文作为单独的文件提交打印,并且不必操作默认类型区域。

答案2

你可以使用geometry以下方法:

\documentclass[11pt,twoside,a4paper]{report}
\usepackage[margin=1in,bindingoffset=.2in,showframe]{geometry} %% Remove showframe in your document

\title{The title of my thesis}
\author{My name \\[5ex] \emph{Supervisor:} \\ My supervisor's name \\[2ex]}
\date{\today}

\begin{document}
\newgeometry{margin=1in}
\maketitle
\restoregeometry
\end{document}

在此处输入图片描述

\\ \\ \\注意:您可以不使用“etc.”,而是发出“extra”命令\\[5ex]来留出额外的行距。

相关内容