我的参考书目标题自称为缩写索引?

我的参考书目标题自称为缩写索引?

我遇到了一个小问题,似乎找不到解决办法。

我有一份缩写索引和参考书目。缩写索引应该叫做附注和参考书目文学

然而,每当我使用缩写索引时,我的参考书目的标题就会变成附注,我不想要。

\documentclass[man, apacite, floatsintext, 12pt, donotrepeattitle]{apa6}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{acronym} 
\usepackage{amsmath,siunitx,booktabs,caption}

\title{xx}
\author{xx}
\affiliation{xx}
\date{April 2016}
\shorttitle{xx}

\begin{document}

\maketitle
\tableofcontents
\newpage
\listoffigures
\newpage

\renewcommand \refname{Abkürzungsverzeichnis}     
\section{Abkürzungsverzeichnis} 

\begin{acronym}[asldkfjasdöfihasodöfhsodfhösa]
\acro{QCAE}{Questionnaire of Cognitive and Affective Empathy}
\acro{NPI-R}{Narcissistic Personality Inventory - Revised}
\acro{TCI}{Temperament and Character Inventory}
\acro{LSRP}{Levenson's Self-Report Psychopathy Scale}
\end{acronym}




\bibliographystyle{apacite}

\bibliography{sample}


\end{document}

答案1

嗯,我不确定我是否完全理解了你的问题,但对我来说,你使用的“命令”似乎\renewcommand \refname{Abkürzungsverzeichnis}是你的问题。

请参阅以下 MWE(我添加了示例书目并评论了您的命令\renewcommand \refname{Abkürzungsverzeichnis}):

\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@Book{Goossens,
  author    = {Goossens, Michel and Mittelbach, Frank and 
               Samarin, Alexander},
  title     = {The LaTeX Companion},
  edition   = {1},
  publisher = {Addison-Wesley},
  location  = {Reading, Mass.},
  year      = {1994},
}
@Book{adams,
  title     = {The Restaurant at the End of the Universe},
  author    = {Douglas Adams},
  series    = {The Hitchhiker's Guide to the Galaxy},
  publisher = {Pan Macmillan},
  year      = {1980},
}
\end{filecontents*}


\documentclass[%
  man, apacite, floatsintext, 12pt, donotrepeattitle
]{apa6}

\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{acronym} 
\usepackage{amsmath,siunitx,booktabs,caption}

\title{xx}
\author{xx}
\affiliation{xx}
\date{April 2016}
\shorttitle{xx}


\begin{document}

\maketitle
\tableofcontents
\newpage
\listoffigures
\newpage

%\renewcommand \refname{Abkürzungsverzeichnis}     

\section{Abkürzungsverzeichnis} 
\begin{acronym}[asldkfjasdöfihasodöfhsodfhösa]
\acro{QCAE}{Questionnaire of Cognitive and Affective Empathy}
\acro{NPI-R}{Narcissistic Personality Inventory - Revised}
\acro{TCI}{Temperament and Character Inventory}
\acro{LSRP}{Levenson's Self-Report Psychopathy Scale}
\end{acronym}

\nocite{*}
\bibliographystyle{apacite}
\bibliography{\jobname} % to use bib file created by filecontents

\end{document}

您想要获得的结果:

附注

并附有参考书目:

文学

相关内容