LaTeX 博士论文的最小模板?

LaTeX 博士论文的最小模板?

我正在寻找 LaTeX 博士论文的最小模板/示例。

我要写一篇博士论文。

我使用 Ubuntu pdflatex(TeX Live 的最低安装)。目标是使用 pdflatex 将其保持在尽可能小的规模以用于博士论文。

如果可能的话,不使用任何包(usepackage)将是理想的。

谢谢

答案1

具有自定义章节和参考书目的间距的最小模板:

\documentclass{scrbook}

\title{Your thesis}
\author{You}
\usepackage[round,authoryear]{natbib}
\RedeclareSectionCommand[beforeskip=1cm,afterskip=2cm]{chapter}

\begin{document}

\frontmatter
\maketitle
\tableofcontents
\mainmatter

\chapter{Introduction}
Text \cite{Mittelbach:2004}
\section{Objectives}
More text

\bibliographystyle{plainnat}
\bibliography{litteratur}

\end{document}

\vspace{}注意:像评论中显示的那样,在每个章节的前后 添加级别不是一个好主意 。相反,应该更改章节格式。

相关内容