删除 bibtex 输出中的粗体和斜体

删除 bibtex 输出中的粗体和斜体

我正在尝试格式化我的论文参考文献(我应该使用AMS 样式格式)。我被要求删除参考文献中的任何粗体和斜体。我正在使用背面。我的 thesis.bib 文件如下所示

    @article {MR1456898,
    AUTHOR = {Bay, Karlheinz and Lay, Wolfgang and Akopyan, Alexey},
     TITLE = {Avoided crossings of the quartic oscillator},
   JOURNAL = {J. Phys. A},
  FJOURNAL = {Journal of Physics. A. Mathematical and General},
    VOLUME = {30},
      YEAR = {1997},
    NUMBER = {9},
     PAGES = {3057--3067},
      ISSN = {0305-4470},
   MRCLASS = {81Q05},
  MRNUMBER = {1456898},
MRREVIEWER = {Gabriel Alvarez},
       DOI = {10.1088/0305-4470/30/9/017},
       URL = {https://doi.org/10.1088/0305-4470/30/9/017},
}

@book {MR1186643,
    AUTHOR = {Berezin, F. A. and Shubin, M. A.},
     TITLE = {The {S}chr\"{o}dinger equation},
    SERIES = {Mathematics and its Applications (Soviet Series)},
    VOLUME = {66},
      NOTE = {Translated from the 1983 Russian edition by Yu. Rajabov, D. A.
              Le\u{\i}tes and N. A. Sakharova and revised by Shubin,
              with contributions by G. L. Litvinov and Le\u{\i}tes},
 PUBLISHER = {Kluwer Academic Publishers Group, Dordrecht},
      YEAR = {1991},
     PAGES = {xviii+555},
      ISBN = {0-7923-1218-X},
   MRCLASS = {81-01 (35J10 35P05 46N50 47F05 47N50)},
  MRNUMBER = {1186643},
       DOI = {10.1007/978-94-011-3154-4},
       URL = {https://doi.org/10.1007/978-94-011-3154-4},
}

我使用的唯一 latex 命令是

\bibliography{thesis}

输出如下:

在此处输入图片描述

如何从输出中删除斜体和粗体?

答案1

这完全是黑客行为,但你可以简单地重新定义\emph\textbf在之前不执行任何操作\bibliography{thesis}。例如,

\documentclass{article}
\begin{filecontents}[overwrite]{\jobname.bib}
@article {MR1456898,
    AUTHOR = {Bay, Karlheinz and Lay, Wolfgang and Akopyan, Alexey},
     TITLE = {Avoided crossings of the quartic oscillator},
   JOURNAL = {J. Phys. A},
  FJOURNAL = {Journal of Physics. A. Mathematical and General},
    VOLUME = {30},
      YEAR = {1997},
    NUMBER = {9},
     PAGES = {3057--3067},
      ISSN = {0305-4470},
   MRCLASS = {81Q05},
  MRNUMBER = {1456898},
MRREVIEWER = {Gabriel Alvarez},
       DOI = {10.1088/0305-4470/30/9/017},
       URL = {https://doi.org/10.1088/0305-4470/30/9/017},
}
@book {MR1186643,
    AUTHOR = {Berezin, F. A. and Shubin, M. A.},
     TITLE = {The {S}chr\"{o}dinger equation},
    SERIES = {Mathematics and its Applications (Soviet Series)},
    VOLUME = {66},
      NOTE = {Translated from the 1983 Russian edition by Yu. Rajabov, D. A.
              Le\u{\i}tes and N. A. Sakharova and revised by Shubin,
              with contributions by G. L. Litvinov and Le\u{\i}tes},
 PUBLISHER = {Kluwer Academic Publishers Group, Dordrecht},
      YEAR = {1991},
     PAGES = {xviii+555},
      ISBN = {0-7923-1218-X},
   MRCLASS = {81-01 (35J10 35P05 46N50 47F05 47N50)},
  MRNUMBER = {1186643},
       DOI = {10.1007/978-94-011-3154-4},
       URL = {https://doi.org/10.1007/978-94-011-3154-4},
}
\end{filecontents}
\bibliographystyle{amsplain}
\begin{document}
\nocite{*}
\begingroup
\let\emph\relax
\let\textbf\relax
\bibliography{\jobname}
\endgroup
\end{document}

MWE 输出

相关内容