APA 格式的标题有问题

APA 格式的标题有问题

下面的代码

\NeedsTeXFormat{LaTeX2e}
\documentclass[man,floatmarkers,noapacite,latin]{apa}

\usepackage[backend=biber,style=apa]{biblatex}
\usepackage{csquotes}%context-sensitive quotes, required for biblatex
\usepackage{graphicx}%inclusion of images
\usepackage{lipsum}% blind text

\usepackage{hyperref}%hyperrefs in PDF, must be last package called, preloaded in beamer

\addbibresource{Project-literature.bib}


\title{My fancy, wordy title}
\shorttitle{My title}   % defaults to title
\author{John Doe}
\affiliation{Alma mater, Shangrila (Paradise)}

\abstract{\lipsum[1]}

\acknowledgements{\lipsum[2]}

\begin{document}
\begin{refsection}
\maketitle
Keywords: a keyword, another keyword

\lipsum[3]

\begin{figure}
 \caption{A caption explaining the figure }
 \label{fig:aa}
 \centering
 \includegraphics[width=\textwidth]{Graphics/test1}
\end{figure}

\lipsum[4] (vide fig. \ref{fig:aa})

\begin{figure}
 \caption{Another caption explaining another figure }
 \label{fig:bb}
 \centering
 \includegraphics[width=\textwidth]{Graphics/test2}
\end{figure}

\lipsum[5] (vide fig. \ref{fig:bb}).

\printbibliography[heading=subbibliography]
\end{refsection}

\end{document}              

生成以下带有虚假“图形#”(突出显示)的标题列表: 上述 LaTeX 代码生成的标题列表

我怎样才能摆脱它们?

答案1

apa课程尚未赶上\contentsline具有四个论点的事实hyperref(并且几年来还使用 LaTeX)。

尝试

\makeatletter \long\def\@@contentsline#1#2#3#4{ #2 }\makeatother

并提交错误报告。

相关内容