如何重置论文文档中的页码

如何重置论文文档中的页码

我正在使用从学校网站下载的预定义文档类来撰写论文。它按给定顺序创建首页、目录,然后创建文档的其余部分。页码从第一章开始。我的学校要求在目录之后立即提供签名表格的扫描件。当我插入它时,页码从插入此图(表格占一整页)的页面开始。我希望页码从第一章开始。

\documentclass[12pt]{gatech-thesis}

\begin{document}
\bibliographystyle{thesis}
\begin{preliminary}
\contents
\end{preliminary}
\pagenumbering{gobble} 
\begin{figure}[htp] \centering{
\includegraphics[scale=0.80]{myfile.pdf}}
\end{figure}
\thispagestyle{empty}
\newpage
\pagenumbering{arabic} 
\setcounter{page}{1}
\chapter{Introduction}\label{introduction}

\end{document}

现在,我插入图表的页面的页码已被删除,但数字“2”仍显示在简介部分。

这意味着那\setcounter{page}{1}没有起作用。

我该如何修复这个问题?

答案1

我不知道这是否仍然有效,但实际上我认为你应该在章节标题之后重置计数器。

\chapter{Title}
\setcounter{page}{1}

就像这样。

答案2

我认为这可能会有所帮助。我在第一章之前重置了页码计数器。因此第一章从第 1 页开始。

\documentclass{book}
\usepackage{lipsum}
\usepackage[demo]{graphicx}
\begin{document}
    \thispagestyle{empty}
    \pagenumbering{gobble} 

    \lipsum[1]
    \begin{figure}[h]
        \includegraphics{demo}
    \end{figure}

    \newpage
    \setcounter{page}{0}
    \pagenumbering{arabic}
    \setcounter{page}{1}

    \chapter{Introduction}
\end{document}

答案3

编译此 MWE 时,第一页没有页码,文档的第二页有页码“1”,即包含“简介”一章的页码。我从 (1) 处的 zip 文件下载了 gatech-thesis.sty,并且还尝试使用 (2) 处的 CTAN 版本。

(1)http://www.grad.gatech.edu/theses-dissertations-templates

(2)https://www.ctan.org/tex-archive/macros/latex/contrib/gatech-thesis

\documentclass{gatech-thesis}
\usepackage{lipsum}
\usepackage[demo]{graphicx}
\begin{document}
    \thispagestyle{empty}
    \pagenumbering{gobble} 

    \lipsum[1]
    \begin{figure}[h]
        \includegraphics{demo}
    \end{figure}

    \newpage
    \pagenumbering{arabic}
    \setcounter{page}{1}

    \chapter{Introduction}
\end{document}

这是我在 Windows 上使用 MiKTeX pdflatex 得到的结果:

在此处输入图片描述

相关内容