如何使用 打开页码classicthesis
?
我使用的是 TeXworks,并采用 pdfLaTeX 设置。以下是我目前所拥有的:
\documentclass[10pt,letterpaper]{book}
\usepackage{classicthesis}
\begin{document}
\title{Book Title}
\author{My Name}
\maketitle
\tableofcontents
\chapter{Introduction}
\section{This Document}
This is some text.
\end{document}
是我做错了什么,还是我需要使用其他命令来打开页码?
答案1
问题在于letterpaper
传递给book
班级的论文选项。
文本高度太大,页码被隐藏。
由于您确实需要该纸张尺寸,因此请加载geometry
包后 classicthesis
并将选项传递给它。
\usepackage[letterpaper]{geometry}