我想.bib
以不同的方式使用文件(例如由 Scopus 创建) - 在我的简历中创建出版物列表。
LaTeX 代码是
\documentclass{article}
\usepackage[margin=0.5in]{geometry}
\usepackage[backend=bibtex,style=alphabetic]{biblatex}
\addbibresource{lib.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
lib.bib的内容如下
@article{article1,
author = "author1",
title = "title1",
journal = "journal1",
year = "2007"
}
@article{article2,
author = "author2",
title = "title2",
journal = "journal2",
year = "2008"
}
@article{article3,
author = "author3",
title = "title3",
journal = "journal3",
year = "2009"
}
输出为
在我的简历中,括号和“参考”一词(用红色矩形标记)似乎不合适。可以用数字代替括号。
我可以控制这些功能吗?
答案1
对于引用的数字标签/编号,使用
style=numeric
作为选择的一部分biblatex
。
为了避免打印参考书目/参考文献的标题,请使用
\printbibliography[heading=none]