在此处输入链接描述如何给出从第二页开始的页码并需要对齐目录。我给出了如下代码
\documentclass[11pt,a4paper]{report}
\usepackage[a4paper,bindingoffset=0.2in,%
left=1in,right=1in,top=1in,bottom=1in,%
footskip=.25in]{geometry}
\usepackage{fancyhdr}
\fancyfoot[R]{\thepage}
\pagestyle{fancy}
\begin{document}
\LARGE{contents}\\
summary.............................3\\
\vspace{3mm}
Secound page.......................4\\
\vspace{3mm}
Third page...........................5\\
\newpage
\LARGE{summary}
This is my first document
\newpage
\LARGE{chapter}
\end{document}
答案1
不要尝试生成手动创建的目录。使用 latex,您可以使用命令获取自动生成的目录\tableofcontents
。对于自动编号的章节、部分、小节...标题,您可以使用\chapter
、\section
、\subsection
...:
将下面的文档编译两次:
\documentclass[11pt,a4paper]{report}
\usepackage[a4paper,bindingoffset=0.2in,%
left=1in,right=1in,top=1in,bottom=1in,%
footskip=.25in]{geometry}
\usepackage{fancyhdr}
\fancyfoot[R]{\thepage}
\pagestyle{fancy}
\begin{document}
\tableofcontents
\chapter{summary}
This is my first document
\chapter{chapter heading}
\section{a section heading}
\subsection{a subsection}
your text
\end{document}
如果这种对齐/布局不符合您的需要,当然可以进行定制。