如何更改 ACM 论文的标题?

如何更改 ACM 论文的标题?

我正在使用acmart.cls下面下载的文件:关联

我的主要 Latex 文件的代码如下:

\documentclass[sigconf]{acmart}

\usepackage[ruled,linesnumbered]{algorithm2e}
\usepackage{optidef}
\usepackage{mathtools,amssymb,amsthm,bm}

\newcommand{\argmax}{\mathop{\hbox{argmax}}}
\newcommand{\bx}{\bm{x}}

% Copyright
\setcopyright{rightsretained}

% DOI
\acmDOI{10.475/123_4}

% ISBN
\acmISBN{123-4567-24-567/08/06}

% SELECT YOUR CONFERENCE/WORKSHOP BELOW...
\acmConference[WOODSTOCK'18]{ACM Woodstock conference}{July 29-August 3, 2018}{City, State, Country}
\acmYear{2018}
\copyrightyear{2018}
\settopmatter{printacmref=false}

\begin{document}
\title[Paper Title Option]{Paper Title}

\author{Author1}\orcid{0000-0000-0000-0000}
\affiliation{
    \institution{School of 1\\1 University}
    \streetaddress{Address1}
    \city{City1}
    \country{State, Country}
    \postcode{12345}
}
\email{[email protected]}

\author{Author2}\orcid{0000-0000-0000-0000}
\affiliation{
    \institution{School of 2\\2 University}
    \streetaddress{Address2}
    \city{City2}
    \country{State, Country}
    \postcode{12345}
}
\email{[email protected]}

\begin{abstract}
blah-blah-blah.
\end{abstract}

\keywords{Blah1; Blah2; Blah3; Blah4.}

\maketitle

\section{Introduction}
blah-blah-blah.
\newpage
\section{Related Work}
blah-blah-blah.
\newpage
\section{System Model}
blah-blah-blah.
\newpage
\section{Problem Formulation}
blah-blah-blah.
\newpage
\section{Proposed Algorithm}
blah-blah-blah.
\newpage
\section{Simulation Results}
blah-blah-blah.
\newpage
\section{Conclusion}
blah-blah-blah.

\begin{acks}
This research was supported by blah-blah-blah.
\end{acks}

\bibliographystyle{ACM-Reference-Format}
\bibliography{sample-bibliography}

\end{document}

第一页没有页眉。

偶数页(即 2、4、6、8、...)中的页眉如下:

2

奇数页(即 3、5、7、9、...)的页眉如下:

3

我想让所有页面(包括第一页)都有相同的页眉(左:论文标题,右:奇数页的会议信息)。

我怎样才能更改标题?

其实我不仅想知道强制解决问题的方法,还想知道通过修复格式文件从根本上解决我的问题的方法。

答案1

之后\maketitle您可以直接插入\thispagestyle{fancy}

如果你想改变课程acmart,你也许可以改变这行将页面样式设置为fancy而不是firstpage(未经测试)。

答案2

对于问题的第二部分,我建议您归档acmart.cls并评论行的内容\acmconference。这应该对您有用 :)

相关内容