微量元素

微量元素

我正在使用revtex4-1格式寫一篇文章,為了產生參考書目,我使用 BibTeX 樣式apsrev4-1

問題是,當我引用書籍時,書名不會在列的末尾(在本例中也不是頁面)中斷,正如您在圖片中可能注意到的那樣。

參考書目圖片

我可以做什麼來解決這種行為?謝謝。

微量元素

\documentclass[twocolumn,aps,showpacs,showkeys,prd,superscriptaddress,byrevtex]{revtex4-1}

\usepackage{amsmath,amsthm,latexsym,amssymb,amsfonts,epsfig}
\usepackage{xcolor}
\usepackage{ulem}
%\usepackage{authblk}
\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

ulem包正在製作下劃線並防止標題在這種情況下被打破。只需刪除包是最簡單的,然後標題將設置為斜體並毫無問題地換行。

答案2

問題出自ulem大衛·卡萊爾提到的。肯定已經在文件

ulem通常在由 強調的文本中用下劃線代替斜體\emph,並在某種程度上由 強調\em\normalem\usepackage選項的聲明[normalem]將停用此功能。

我透過使用解決了這個問題

\usepackage[normalem]{ulem}

代替

\usepackage{ulem}

相關內容