我有 \page style{plain},但没有显示页码。我该如何解决这个问题?

我有 \page style{plain},但没有显示页码。我该如何解决这个问题?

我的论文最初确实有页码,但我不知道现在发生了什么变化,以至于我现在看不到任何页码了。我尝试使用 \pagestyle{},甚至删除它。但什么也没发生。我错过了什么?

这是我的设置:

\documentclass[nonacm,sigconf]{acmart}

% PACKAGES IMPORT
\usepackage{booktabs}
\usepackage{enumitem}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{pdfpages}
\usepackage{blindtext}
\usepackage{float}
\usepackage{lscape}
\usepackage{multicol}
\usepackage{filecontents}
\usepackage{natbib}
\setcitestyle{numbers,notesep={: }}

\def\bibpreamble{All the sources have been accessed between the months ... 2020, this also counts for the footnotes.}

\usepackage[font=small,skip=3pt]{caption}

\settopmatter{printacmref=false}
\renewcommand\footnotetextcopyrightpermission[1]{} % removes footnote with conference information in first column
\pagestyle{plain} % removes running headers

\begin{document}

\input{titlepage}

\begin{abstract}
....
\end{abstract}

\keywords{alpha indicators,...}

\maketitle
\input{content}

\newpage
\bibliographystyle{ACM-Reference-Format}
\bibliography{references}

% \onecolumn
\appendix
\onecolumn
\section{Appendices}
In this section, the supportive attachments are included to the study....

\subsection{Appendix A - Interview Questions}
...
\subsection{Appendix B - Interview Transcripts}
...
\end{document}

答案1

保存在输入文件中。

刚刚添加:

\settopmatter{printfolios=true}

前:

\maketitle
\input{content}

页码又再次出现了。

相关内容