Adicionar texto de cabeçalho à bibliografia

Adicionar texto de cabeçalho à bibliografia

Quero adicionar um parágrafo extra à minha seção bibliográfica, abaixo do título, antes das primeiras referências.

insira a descrição da imagem aqui

Isso é remotamente possível ou preciso procurar outra maneira de contornar?

estou usando oacmsmall.clslayout - minha bibliografia está atualmente construída assim:

\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}

Responder1

Você pode redefinir \thebibliographypara adicionar o texto antes da lista utilizada; Eu defini \AddNotepara compor o 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}

insira a descrição da imagem aqui

O código simplifica usando um patch para o 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}

Responder2

Uma alternativa, caso você esteja usando, biblatexé imprimir a bibliografia sem título e fazer seu próprio título e nota:

\section*{References}
This note will appear before the bibliography...
\printbibliography[heading=none,...]

...ou use a prenote=...opção com a \defbibnotepara definir sua nota.

\defbibnote{intro}{This note will appear before the bibliography...}
\printbibliography[prenote=intro,...]

Veja a página 71 dodocumentação biblatex.

informação relacionada