我需要两个具有以下格式的引用列表......
- 主要报告参考文献
[1] [2] [3] 等等
- 附录 参考文献
[A1][A2][A3]等
我在整个报告中引用了大约 50 个不同的参考文献。
我目前使用这些代码行来生成两个参考列表......
\printbibliography[keyword={MainRep},notkeyword={Appendix},title={Main Report References}]
\printbibliography[keyword={Appendix},notkeyword={MainRep},title={Appendix References}]
如何更改引用编号格式?
答案1
您想设置一个新refcontext
的labelprefix
钥匙添加前缀号码。
但是,听起来您还想设置一个新的,refsection
以避免必须keywords
在 bib 条目中设置来过滤\printbibliography
语句。
\documentclass{article}
\usepackage{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\section{Main}
\cite{aksin}
\printbibliography
\newrefsection
\section{Appendix}
\cite{angenendt}
\newrefcontext[labelprefix=A]
\printbibliography
\end{document}
或者如果两个参考书目都应该放在附录之后,使用
\printbibliography[section=0]
\newrefcontext[labelprefix=A]
\printbibliography[section=1]