仅在第一页进行页码编排,而不对整个文档进行页码编排

仅在第一页进行页码编排,而不对整个文档进行页码编排

我只对第一页进行了编号,随后它没有对后面的页面进行编号。错误从描述摘要的文章标题之后开始,然后从正文开始,因此我无法使用\clearpage。我在这里附加了一些代码。

    \documentclass[a4paper,twoside,10pt]{article}
    \input{includes/packages}
    \begin{document}

        \input{includes/titlePage}
        \pagenumbering{arabic}

        \section*{\normalsize{ABSTRACT}}
        {\textit{....}}
        \paragraph*{Keywords : }

        \input{./sections/00Introduction}

        \input{./sections/01Section1}


        \nopagebreak
        \input{./sections/05Section5}
        \nocite{*}
        \printbibliography
    \end{document}

此外,问题的原因可能是includes\titlePage我在此处附加的内容:

% On the header of the title page
\thispagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
%\lhead{}
\lhead{\includegraphics[height=0.8cm]{./images/Uni-logo.png} \\\textit{Chair of Uni}}
\pagenumbering{gobble}

% On the authors and the title of the project
\long\def\symbolfootnote[#1]#2{\begingroup%
\def\thefootnote{\fnsymbol{footnote}}\footnote[#1]{#2}\endgroup}
\vspace*{3 mm}
\begin{center}\huge{\textbf{Title of article}}\\[10pt]\end{center}
\begin{center} \textbf{Author}\\[5pt]\end{center}

答案1

\pagenumbering{gobble}不是一个好的方法隐藏页码(并可能混淆 LaTeX)。您似乎不想隐藏它们,因此您可能想删除此行。

相关内容