我很沮丧,想把我的名字写在 bibtex 书目上。有什么办法吗?
\documentclass[
fontsize=12pt,
bibliography=totoc]{scrreprt}
\usepackage[
style=alphabetic,
backend=biber,
%backref=true
]{biblatex}
\bibliography{\jobname.bib}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{ThKZ2002,
%required: author,title,journal,year
%optional: volume,number,pages,month,note,doi/url+urldate
author={Goldschlag, David and Reed, Michael and Syverson, Paul},
title={{Onion Routing for Anonymous and Private
Internet Connections}},
journal={Communications of the ACM},
year={1999},
volume={42},
number={2},
month={feb},
}
\begin{document}
\end{filecontents}
\begin{raggedright}
\nocite{*}
\printbibliography
\end{raggedright}
\end{document}
我找不到在 Bibtex 标题“参考文献”上放置文本的方法。但是,这可能吗?
答案1
一种可能性是将参考书目标题从章节“降级”为节。这样它就不会开始新的页面,您可以在页面上将任何内容放在它之前。
\documentclass[
fontsize=12pt,
bibliography=totoc]{scrreprt}
\usepackage[
style=alphabetic,
backend=biber,
%backref=true
]{biblatex}
\bibliography{\jobname.bib}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{ThKZ2002,
%required: author,title,journal,year
%optional: volume,number,pages,month,note,doi/url+urldate
author={Goldschlag, David and Reed, Michael and Syverson, Paul},
title={{Onion Routing for Anonymous and Private
Internet Connections}},
journal={Communications of the ACM},
year={1999},
volume={42},
number={2},
month={feb},
}
\end{filecontents}
\begin{document}
\nocite{*}
\clearpage
\noindent text before bibiography
\begin{raggedright}
\printbibliography[heading=subbibliography]
\end{raggedright}
\end{document}