我们大学的论文格式要求我们使用以下边距(A4 格式):
- 左:4.3 厘米
- 右:4.3 厘米
- 顶部:5厘米
- 底部:4.7 厘米
然后,这些 A4 格式的页面将再次被裁剪,以适合 17 厘米 x 24 厘米的格式,左侧、右侧、顶部和底部的边距均为 2 厘米。
我通过添加以下内容使其工作ClassicThesis.tex
:
\usepackage[left=4.3cm,right=4.3cm,top=5cm,bottom=4.7cm,includehead,includefoot]{geometry}
我还使用了该linedheaders
选项来让章节编号恰好适合页边距。
但是,我想知道是否有更好的方法可以做到这一点?首先,考虑到这些边距,整体字体大小现在似乎有点大。
谢谢!
答案1
到底是什么问题?这似乎工作正常。
\documentclass[a4paper]{report}
\usepackage{classicthesis}
\usepackage[left=4.3cm,right=4.3cm,top=5cm,bottom=4.7cm,includehead,includefoot]{geometry}
\usepackage{lipsum}
\begin{document}
\title{Lorem ipsum}
\author{Patrick Happel}
\maketitle
\chapter{Part 1}
\lipsum
\end{document}