Quiero agregar un párrafo extra en mi sección de bibliografía, debajo del título, antes de las primeras referencias.
¿Es esto siquiera remotamente posible o tengo que buscar otra solución?
estoy usando elacmsmall.clsdiseño: mi bibliografía actualmente está construida así:
\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}
Respuesta1
Puede redefinir \thebibliography
para agregar el texto antes de la lista utilizada; Definí \AddNote
componer el texto:
\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}
El código simplifica el uso de un parche para el comando:
\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}
Respuesta2
Una alternativa, en caso de que la utilice, biblatex
es imprimir la bibliografía sin título y crear su propio título y nota:
\section*{References}
This note will appear before the bibliography...
\printbibliography[heading=none,...]
...o usa la prenote=...
opción con a \defbibnote
para definir tu nota.
\defbibnote{intro}{This note will appear before the bibliography...}
\printbibliography[prenote=intro,...]
Consulte la página 71 deldocumentación biblatex.