这个简单的 MWE 给了我期望的结果文本PDF。但是,当我打开 PDF 时,书签被称为“附录”和“附录”,而不是“附录 A”和“附录 B”。有没有简单而优雅的方法来解决这个问题?
梅威瑟:
\documentclass[11pt]{article}
\usepackage[titletoc,title]{appendix}
\usepackage[colorlinks, pdfstartview={XYZ null null 1.25},bookmarksopen=true, bookmarksopenlevel=\maxdimen, citecolor={blue},urlcolor={blue}]{hyperref}
\begin{document}
Text (see \hyperref[Appendix A]{Appendix A} and \hyperref[Appendix B]{Appendix B})
\bigskip
\begin{appendices}
\section{}\label{Appendix A}
text
\section{}\label{Appendix B}
text
\end{appendices}
\end{document}
PDF文本:
PDF 书签:
答案1
\documentclass[11pt]{article}
\usepackage[titletoc,title]{appendix}
\usepackage[colorlinks, pdfstartview={XYZ null null 1.25},bookmarksopen=true, bookmarksopenlevel=\maxdimen, citecolor={blue},urlcolor={blue}]{hyperref}
\begin{document}
Text (see \hyperref[Appendix A]{Appendix A} and \hyperref[Appendix B]{Appendix B})
\bigskip
\hypersetup{bookmarksnumbered}
\begin{appendices}
\section{}\label{Appendix A}
text
\section{}\label{Appendix B}
text
\end{appendices}
\end{document}