我正在使用revtex4-1
格式撰写一篇文章,为了生成参考书目,我使用了 BibTeX 样式apsrev4-1
。
最近,该期刊改变了参考书目格式,现在允许在参考书目中包含文章标题。
是否可以修改样式来显示标题?谢谢。
平均能量损失
\documentclass[twocolumn,aps,showpacs,showkeys,prd,superscriptaddress,byrevtex]{revtex4-1}
\usepackage{amsmath,latexsym}
\usepackage{xcolor}
\usepackage[%
colorlinks=true,
urlcolor=blue,
linkcolor=blue,
citecolor=blue
]{hyperref}
\usepackage{etoolbox}
\usepackage{breqn}
\makeatletter
\let\cat@comma@active\@empty
\makeatother
\begin{document}
\title{I'm here you're there}
\author{Oscar \surname{Castillo-Felisola}}
\section{\label{phenom}Phenomenological implications}
\cite{Cartan-Einstein,Cartan1922,*Cartan1923,*Cartan1924,*Cartan1925}
\bibliographystyle{apsrev4-1}
\bibliography{References.bib}
\end{document}
BibTeX 条目
@Article{Cartan1922,
author = {Cartan, Elie},
title = {Sur une g\'en\'eralisation de la notion de courbure de Riemann et les espaces \`a torsion},
journal = {C. R. Acad. Sci. Paris},
year = {1922},
volume = {174},
pages = {593},
url = {http://gallica.bnf.fr/ark:/12148/bpt6k3127j.image.langFR},
}
@article{Cartan1923,
title={Sur les vari{\'e}t{\'e}s {\`a} connexion affine et la th{\'e}orie de la relativit{\'e} g{\'e}n{\'e}ralis{\'e}e (premi{\`e}re partie)},
author={Cartan, Elie},
journal={Ann. Ec. Norm. Super.},
volume={40},
pages={325},
year={1923},
organization={Soci{\'e}t{\'e} math{\'e}matique de France},
url = "http://archive.numdam.org/article/ASENS_1923_3_40__325_0.pdf",
}
@article{Cartan1924,
added-at = {2012-03-20T16:46:21.000+0100},
author = {Cartan, Elie},
biburl = {http://www.bibsonomy.org/bibtex/28d419192587558cbe5fb0ef3010fa947/marco.giovanell},
interhash = {44a9d347ae2ea364f07c0e4e9cdcbfab},
intrahash = {8d419192587558cbe5fb0ef3010fa947},
journal = {Ann. Ec. Norm. Super.},
keywords = {jabref:noKeywordAssigned},
owner = {marco},
pages = {1},
timestamp = {2012-03-20T16:46:21.000+0100},
title = {Sur les vari\'et\'es \`a connexion affine, et la th\'eorie de la relativit\'e
g\'en\'eralis\'ee (premi\`ere partie) (Suite)},
volume = {41},
year = {1924},
url = {http://www.numdam.org/numdam-bin/item?id=ASENS_1924_3_41__1_0},
}
@article{Cartan1925,
added-at = {2012-03-20T16:46:21.000+0100},
author = {Cartan, Elie},
biburl = {http://www.bibsonomy.org/bibtex/2a42d27017aaeac461f63112c6604b814/marco.giovanell},
interhash = {7b4e0980e917b55bf750d1c1fdee61c3},
intrahash = {a42d27017aaeac461f63112c6604b814},
journal = {Ann. Ec. Norm. Super.},
keywords = {jabref:noKeywordAssigned},
owner = {Marco},
pages = {17},
timestamp = {2012-03-20T16:46:21.000+0100},
title = {Sur les vari\'et\'es \`a connexion affine et la th\'eorie de la relativit\'e
g\'en\'eralis\'ee, Part II,},
volume = {42},
year = {1925},
url = {http://www.numdam.org/numdam-bin/item?id=ASENS_1925_3_42__17_0},
}
@Book{Cartan-Einstein,
editor = {Debever, Robert},
title = {Elie Cartan - Albert Einstein Letters on Absolute Parallelism 1929-1932},
publisher = {Princeton University Press},
year = {1979},
}
答案1
根据@Mico的建议,我查看了APS的网页并发现了以下内容
如何才能使所引用期刊文章的标题出现在参考书目中?
REVTeX 4.1 为每个支持的期刊调用一个默认的 BibTeX 样式 (.bst) 文件。.bst 文件支持在参考书目中显示所引用期刊文章的标题。要显示标题,只需使用“longbibliography”类选项。有关更多信息,请参阅 REVTeX 4.1 文档。
因此,我的问题的解决方案如下:
- 添加日志全局选项:就我而言
aps,prd
- 添加
longbibliography
全局选项 - 删除该
\bibliographystyle{apsrev4-1}
线。
因此,最小代码将是(删除一些不必要的选项后)
\documentclass[twocolumn,aps,prd,longbibliography]{revtex4-1}
\usepackage{amsmath,latexsym}
\usepackage{xcolor}
\usepackage[%
colorlinks=true,
urlcolor=blue,
linkcolor=blue,
citecolor=blue
]{hyperref}
\usepackage{etoolbox}
\usepackage{breqn}
\makeatletter
\let\cat@comma@active\@empty
\makeatother
\begin{document}
\title{I'm here you're there}
\author{Oscar \surname{Castillo-Felisola}}
\section{\label{phenom}Phenomenological implications}
\cite{Cartan-Einstein,Cartan1922,*Cartan1923,*Cartan1924,*Cartan1925}
\bibliography{References.bib}
\end{document}