참고문헌에 헤더 텍스트 추가

참고문헌에 헤더 텍스트 추가

내 참고문헌 섹션의 제목 아래 첫 번째 참고문헌 앞에 추가 단락을 추가하고 싶습니다.

여기에 이미지 설명을 입력하세요

이것이 원격으로도 가능합니까, 아니면 다른 방법을 찾아야 합니까?

나는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=...옵션을 사용하여 \defbibnote메모를 정의하세요.

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

71페이지를 참조하세요.biblatex 문서.

관련 정보