我的目标如下:
- 将附录显示为正文中不带编号的部分。
- 在书签中显示名为“附录”的项目。
- 点击书签中的“附录”时,跳转到附录所在的位置。
这是一个最小工作示例:
\documentclass[12pt]{article}
%\usepackage{preliminary}
\usepackage[T1]{fontenc}
\usepackage[dvipsnames]{xcolor}
\usepackage{ae,aecompl, amsthm}
\usepackage[colorlinks]{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=red,
urlcolor=blue,
linktoc=all,
citecolor=blue
}
\usepackage{graphicx}
\usepackage{dsfont}
\usepackage{pdfpages}
\usepackage{textcomp}
\usepackage[letterpaper, width=17cm, height=20cm]{geometry}
%\usepackage{float}
\usepackage{natbib}
\usepackage{comment}
\usepackage{nicematrix}
\definecolor{mygray1}{gray}{0.8}
\definecolor{mygray2}{gray}{0.6}
\definecolor{mygray3}{gray}{0.4}
\definecolor{mygray4}{gray}{0.2}
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}
\newtheorem{proposition}{Proposition}
\newtheorem{corollary}{Corollary}
\newtheorem{conjecture}{Conjecture}
\newtheorem{definition}{Definition}
\newtheorem{example}{Example}
\newtheorem{remark}{Remark}
\newtheorem{claim}{{\sc Claim}}
\newtheorem{condition}{Condition}
\newcommand{\tc}{\textcolor}
\renewcommand{\baselinestretch}{1.25}
%\usepackage{mathtools}
\usepackage{upgreek}
\usepackage{adjustbox}
\usepackage{cancel}
\usepackage{authblk}
\usepackage{amssymb}
\usepackage{enumitem}
\usepackage{tikz}
\usepackage[capposition=bottom]{floatrow}
\usepackage{url}
\newcommand{\argmax}{arg\max}
\newcommand{\argmin}{arg\min}
\newcommand*{\QEDA}{\null\nobreak\hfill\ensuremath{\blacksquare}}%
\begin{document}
\title{Title\thanks{I thank }}
\author{Author\thanks{LaTeX University}}
%\affil{University of Michigan}
%\date{\today}
%\date{}
\date{April 13, 2022}
\maketitle
\begin{abstract}
abstract
\noindent {\bf Keywords}: keywords
\end{abstract}
\section{Introduction}
\newpage
\section{Main Body}
\newpage
\section{Conclusion}
\newpage
\addcontentsline{toc}{section}{Appendix}
\section*{Appendix}
\end{document}
它实现了目标 1 和 2,但没有实现目标 3。
编辑:我反转了 \addcontentsline{toc}{section}{Appendix} 和 \section*{Appendix} 并且它起作用了。