这是 MWE,它返回了两个参考文献引文。文章引文以单引号显示,而我想要双引号。对于会议,我需要斜体显示会议标题,并将“in”一词从斜体更正为正常。
\documentclass[a4paper,11pt,Times]{article}
\usepackage[english]{babel}
\usepackage[a4paper]{geometry}
\usepackage{csquotes}
\usepackage{natbib}
\bibliographystyle{agsm}
\begin{document}
The first reference is \citep{AAA} where I need to put Double Quotes in the title.
In the next ref \citep{BBB} I need the title of proceeding to be in italics.
\bibliography{biblio}{}
\end{document}
和 bibtex 文件......
@ARTICLE{AAA,
author = {Authors1},
title = {The title of the paper},
journal = {A Journal},
year = {2000},
volume = {1111},
pages = {111--222},
number = {5}
}
@CONFERENCE{BBB,
author = {Authors2},
title = {\enquote{The title of second citation}},
booktitle = {International Conference},
year = {2000},
address = {Country},
month = {Month}
}
答案1
使用 biblatex 您的 MWE 应该看起来像这样,并且应该提供您的开箱即用请求(参见这里):
\documentclass[a4paper,11pt,Times]{article}
\usepackage[english]{babel}
\usepackage[a4paper]{geometry}
\usepackage{csquotes}
\usepackage[style=authoryear]{biblatex}
\addbibresource{bibliography.bib}
\begin{document}
The first reference is \parencite{AAA} where I need to put Double Quotes in the title.
In the next ref \parencite{BBB} I need the title of proceeding to be in italics.
\printbibliography
\end{document}