按类别分类的参考文献(期刊、论文集)

按类别分类的参考文献(期刊、论文集)

我如何\documentclass{article}使用?按类别打印参考文献natbib?例如文章、会议记录……?谢谢

我是 LATEX 新手,搜索了很多。如果您能帮助我,我将不胜感激。我想按类别打印简历中的论文。我该如何更改以下代码?

\documentclass{article}
\usepackage{enumitem}%itemizeing
\usepackage{natbib}
\usepackage{bibentry}
\usepackage{hyperref}
\hypersetup{pdfstartview={XYZ null null 1.00}}

\begin{document}
%------------------------------
\bibliographystyle{apalike}
\nobibliography{bibsample}

%------------------------------
\section*{PUBLICATIONS}
\begin{itemize}
  %-----------------------------------------------------------------------------
  \item[]
  \bibentry{no1}.
  %-----------------------------------------------------------------------------
  \item[]
  \bibentry{no2}.
  %-----------------------------------------------------------------------------
  \item[]
  \bibentry{no3}.
  %-----------------------------------------------------------------------------
  \item[]
  \bibentry{no4}.
  %-----------------------------------------------------------------------------
\end{itemize}
\end{document}

这是我的示例文件

@inproceedings{no1,
address = {city1},
author = {familyname, name},
booktitle = {book1},
title = {{title1}},
year = {2012}
}

@inproceedings{no2,
address = {city1},
author = {familyname, name},
booktitle = {book2},
doi = {10........},
month = jun,
number = {10},
pages = {1000--1100},
publisher = {American Society of ....},
title = {{title2}},
year = {2013}
}


@article{no3,
author = {familyname, name},
journal = {submitted for publication},
doi = {10.0000},
journal = {Journal2},
month = feb,
number = {1},
pages = {200-300},
publisher = {Elsevier Ltd},
title = {{65465653}},
volume = {1},
year = {2014}
}
@article{no4,
author = {familyname, name},
journal = {submitted for publication},
doi = {10.0000},
journal = {Journal2},
month = feb,
number = {1},
pages = {200-300},
publisher = {Elsevier Ltd},
title = {{65465653}},
volume = {1},
year = {2014}
}

答案1

biblatex一种替代方法是使用在 TeX.SX 上多次看到的包。

houmanCv出版物

\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\usepackage{hyperref}
\hypersetup{pdfstartview={XYZ null null 1.00}}

\begin{document}

\nocite{angenendt,aksin,companion,aristotle:physics}
\printbibheading[title=Publications]
\printbibliography[type=article,title=Articles,heading=subbibliography]
\printbibliography[type=book,title=Books,heading=subbibliography]
\end{document}

相关内容