用字符串替换目录中的页码

用字符串替换目录中的页码

我尝试将最后一页的页码设置为“结束页”,因为这是我所在大学的论文要求。这就是我所拥有的:

\chapter*{ABOUT THE AUTHOR} 
\label{ch:author}
\setcounter{page}{End Page}
\addcontentsline{toc}{chapter}{About the Author}

我在第 3 行收到一个错误,缺少一个数字,并且它被视为 0。该数字在目录中显示为 0。

答案1

这是一个可能的解决方案。这个问题很可能与这个问题

\documentclass[12pt]{article}
\usepackage{fancyhdr}
\usepackage{lipsum}
\pagestyle{fancy}
\begin{document}
\tableofcontents
\clearpage
\section{blabla}
\lipsum{1} 
\section{blablabla}
\lipsum{2}
\clearpage %from https://tex.stackexchange.com/questions/152589/how-to-add-a-line-to-the-table-of-contents-without-a-page-number
\addtocontents{toc}{%
  \protect\contentsline{section}{Acknowledgments}{End Page}}
\section*{Acknowledgments}
\chead{}\rhead{Acknowledgments}\cfoot{End Page}
I'm grateful to an anonymous marmot sacrificing precious hibernation time for \TeX\ related questions.
\end{document}

对于给定的文档类别,很可能存在更为优雅的解决方案。

相关内容