내 참고문헌 섹션의 제목 아래 첫 번째 참고문헌 앞에 추가 단락을 추가하고 싶습니다.
이것이 원격으로도 가능합니까, 아니면 다른 방법을 찾아야 합니까?
나는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 문서.