目录,我想要页码位于右上角并且没有“内容”标题

目录,我想要页码位于右上角并且没有“内容”标题

我希望目录页的右上角显示页码,但不显示“目录”标题。我尝试了网上找到的多种方法,例如:

1.

\documentclass[11pt]{iopart}
\begin{document}

\begin{titlepage}
\centering
\Large\textbf{Title}
\end{titlepage}

\tableofcontents
\clearpage
\markboth{}{}

输出为

在此处输入图片描述

或者

2.

\documentclass[11pt]{iopart}
\begin{document}

\begin{titlepage}
\centering
\Large\textbf{Title}
\end{titlepage}

\tableofcontents
\thispagestyle{plain}
\clearpage
\markboth{}{}

输出结果为:

在此处输入图片描述

但页码位于页面的底部中央。

所以我基本上想要两者结合。如有任何建议,我将不胜感激。

答案1

我是原贴作者。如果有人感兴趣的话,我找到了一种方法来做到这一点。

\documentclass[11pt]{iopart}
\usepackage{fancyhdr}
\begin{document}

\begin{titlepage}
\centering
\Large\textbf{Title}
\end{titlepage}

\thispagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt} % this removes an optional horizontal line below the header
\rhead{\thepage}
\lhead{} % Not required if left blank. Same for \rfoot and \lfoot
\rfoot{}
\lfoot{}
\tableofcontents
\clearpage
\markboth{}{}

相关内容