Ich möchte in meinem Literaturverzeichnis unter dem Titel vor den ersten Referenzen einen zusätzlichen Absatz hinzufügen.
Ist das überhaupt möglich oder muss ich nach einem anderen Weg suchen?
Ich verwende dieacmsmall.clsLayout - meine Bibliographie ist derzeit so aufgebaut:
\begin{thebibliography}{}
%%%I want to add a statement here!
\bibitem{G}
Carretero, J., Isaila, F., Kermarrec, A. M., Taïani, F., \& Tirado, J. M.
(2012, June).
Geology: Modular georecommendation in gossip-based social networks.
In Distributed Computing Systems (ICDCS), 2012 IEEE 32nd International Conference on (pp. 637-646).
IEEE.
\end{thebibliography}
Antwort1
Sie können neu definieren, \thebibliography
um den Text vor der verwendeten Liste hinzuzufügen. Ich habe definiert, \AddNote
um den Text zu setzen:
\documentclass{acmsmall}
\makeatletter
\newcommand\AddNote[1]{\def\@addnote{#1}}
\providecommand\@addnote{}
\def\thebibliography#1{%
\footnotesize
\refsection*{{\refname}
\@mkboth{\uppercase{\refname}}{\uppercase{\refname}}%
}
\@addnote\par
\list{}{
\settowidth\labelwidth{}
\leftmargin0pt
\advance\leftmargin\bibindent
\itemindent -\bibindent
\itemsep2pt
\parsep \z@
\usecounter{enumi}%
}%
\let\newblock\@empty
\sloppy
\sfcode`\.=1000\relax
}
\makeatother
\begin{document}
\AddNote{And here's the text that will be added to the bibliography, right after the title but before the first entry. We add some more text here.}
\begin{thebibliography}{9}
\bibitem{G}
Carretero, J., Isaila, F., Kermarrec, A. M., Taïani, F., \& Tirado, J. M.
(2012, June).
Geology: Modular georecommendation in gossip-based social networks.
In Distributed Computing Systems (ICDCS), 2012 IEEE 32nd International Conference on (pp. 637-646).
IEEE.
\end{thebibliography}
\end{document}
Der Code wird durch die Verwendung eines Patches für den Befehl vereinfacht:
\documentclass{acmsmall}
\usepackage{etoolbox}
\makeatletter
\newcommand\AddNote[1]{\def\@addnote{#1}}
\providecommand\@addnote{}
\patchcmd{\thebibliography}
{\list}
{\@addnote\par\list}
{}
{}
\makeatother
\begin{document}
\AddNote{And here's the text that will be added to the bibliography, right after the title but before the first entry. We add some more text here.}
\begin{thebibliography}{9}
\bibitem{G}
Carretero, J., Isaila, F., Kermarrec, A. M., Taïani, F., \& Tirado, J. M.
(2012, June).
Geology: Modular georecommendation in gossip-based social networks.
In Distributed Computing Systems (ICDCS), 2012 IEEE 32nd International Conference on (pp. 637-646).
IEEE.
\end{thebibliography}
\end{document}
Antwort2
Eine Alternative, falls Sie es verwenden, biblatex
besteht darin, entweder die Bibliographie ohne Überschrift auszudrucken und eine eigene Überschrift und Notiz zu erstellen:
\section*{References}
This note will appear before the bibliography...
\printbibliography[heading=none,...]
...oder verwenden Sie die prenote=...
Option mit einem, \defbibnote
um Ihre Notiz zu definieren.
\defbibnote{intro}{This note will appear before the bibliography...}
\printbibliography[prenote=intro,...]
Siehe Seite 71 desBiblatex-Dokumentation.