Добавить текст заголовка в библиографию

Добавить текст заголовка в библиографию

Я хочу добавить дополнительный абзац в раздел библиографии под заголовком, перед первыми ссылками.

введите описание изображения здесь

Возможно ли это хотя бы отдалённо, или мне нужно искать другой путь?

Я используюacmsmall.clsмакет - моя библиография в настоящее время построена следующим образом:

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

решение1

Вы можете переопределить, \thebibliographyчтобы добавить текст перед используемым списком; я определил, \AddNoteчтобы набрать текст:

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

введите описание изображения здесь

Код упрощается с помощью патча к команде:

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

решение2

Альтернативный вариант, который вы можете использовать, biblatex— это распечатать библиографию без заголовка и создать свой собственный заголовок и примечание:

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

...или используйте prenote=...опцию с a \defbibnoteдля определения заметки.

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

См. страницу 71документация библатекс.

Связанный контент