我不知道为什么文章的标题没有出现在我的参考文献中。也许你能帮我找出答案。
\documentclass[a4paper, 11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[style=chem-acs]{biblatex}
\addbibresource{library.bib}
\begin{document}
hello\cite{Lieb}
\printbibliography
\end{document}
我的参考是
@ARTICLE{Lieb,
year = {2013},
month = feb,
publisher = {American Academy of Pediatrics },
volume = {131},
number = {3},
pages = {e983, e985},
author = {A. S. Lieberthal and A. E. Carroll and T. Chonmaitree and T. G. Ganiats and A. Hoberman and M. A. Jackson and M. D. Joffe and D. T. Miller and R. M. Rosenfeld and X. D. Sevilla and R. H. Schwartz and P. A. Thomas and D. E. Tunkel},
title = {{T}he diagnosis and management of acute otitis media},
journal = {Pediatrics},
}
答案1
化学书目风格以简洁著称,许多都省略了(通常很长的)文章标题,因为文章可以通过期刊、卷号和页码轻松识别。
但对于大多数biblatex-chem
样式,你可以使用articletitle=true,
\documentclass[a4paper, 11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[style=chem-acs, articletitle=true]{biblatex}
\begin{filecontents}{\jobname.bib}
@article{Lieb,
year = {2013},
month = feb,
volume = {131},
number = {3},
pages = {e983, e985},
author = {A. S. Lieberthal and A. E. Carroll and T. Chonmaitree
and T. G. Ganiats and A. Hoberman and M. A. Jackson
and M. D. Joffe and D. T. Miller and R. M. Rosenfeld
and X. D. Sevilla and R. H. Schwartz and P. A. Thomas
and D. E. Tunkel},
title = {The diagnosis and management of acute otitis media},
journal = {Pediatrics},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
hello\cite{Lieb}
\printbibliography
\end{document}
答案2
您需要设置articletitle=true
\usepackage[style=chem-acs,articletitle=true]{biblatex}