Revtex 再次生成损坏的 .bib 文件

Revtex 再次生成损坏的 .bib 文件

我的问题和这篇文章的作者一样:

Revtex 生成损坏的 .bib 文件

但在这种情况下,当 tex 文件的文件名中不包含空格时,问题似乎已解决。

就我而言,这并不适用,因为我的文件名是 example.tex 并且我遇到了同样的问题:我使用 Revtex4-1,每次我使用命令 Latex 时,我都会发现会自动从任何地方创建一个额外的 exampleNotes.bib。

这是我的 tex 文件:

\documentclass[pop,reprint]{revtex4-1}

\begin{document}

\preprint{AIP/Draft1}

\title{Title} %Title of paper

\author{E. Sorolla}
\email{[email protected]}
\affiliation{XLIM, Av. Albert Thomas, 123, Limoges 87100, France.}

\date{\today}

\begin{abstract}
Multipactor is blablabla
\end{abstract}

\pacs{52.80.Pi, 52.80.Vp, 52.20.Dq, 94.05.Pt}% insert suggested PACS numbers in braces on next line

\maketitle %\maketitle must follow title, authors, abstract and \pacs

\section{Introduction}
\label{sec:intro}
We make an example \cite{Ang_1998} to see whether this works well.

\bibliographystyle{aipnum4-1}
\bibliography{Bibliography}

\end{document}

我的围兜文件:

%This file was created with JabRef 2.10
%Encoding: Cp1252

@Article{Ang_1998,
Title                    = {Power deposited on a dielectric by multipactor},
Author                   = {L. K. Ang and Y.Y. Lau and R. A. Kishek and R. M. Gilgenbach},
Journal                  = {IEEE Transaction on Plasma Science},
Pages                    = {290-295},
Volume                   = {26},
Year                     = {1998},

Owner                    = {sorolla},
Timestamp                = {2014.01.15}
}

有人能帮忙停止生成这个文件吗?你知道为什么 RevTeX 坚持生成这个额外的 bib 文件吗?

答案1

revtex4-1课程默认在参考文献中设置脚注,因为这是《物理评论》的风格。

<filename>Notes.bib文件将包含脚注文本。使用以下示例文件eden.tex

\begin{filecontents*}{\jobname.bib}
@Article{Ang_1998,
Title                    = {Power deposited on a dielectric by multipactor},
Author                   = {L. K. Ang and Y.Y. Lau and R. A. Kishek and R. M. Gilgenbach},
Journal                  = {IEEE Transaction on Plasma Science},
Pages                    = {290-295},
Volume                   = {26},
Year                     = {1998},

Owner                    = {sorolla},
Timestamp                = {2014.01.15}
}
\end{filecontents*}

\documentclass[reprint,showpacs]{revtex4-1}

\usepackage{lipsum} % just to fill in some text

\begin{document}

\preprint{AIP/Draft1}

\title{Title} %Title of paper

\author{E. Sorolla}
\email{[email protected]}
\affiliation{XLIM, Av. Albert Thomas, 123, Limoges 87100, France.}

\date{\today}

\begin{abstract}
\lipsum[2]
\end{abstract}

\pacs{52.80.Pi, 52.80.Vp, 52.20.Dq, 94.05.Pt}% insert suggested PACS numbers in braces on next line

\maketitle %\maketitle must follow title, authors, abstract and \pacs

\section{Introduction}
\label{sec:intro}
We make an example \cite{Ang_1998} to see whether this works well.
There is also a footnote.\footnote{Some footnote text.}

\lipsum[3-5]

\bibliographystyle{aipnum4-1}
\bibliography{\jobname}

\end{document}

filecontents*环境用于使示例自成一体)您将获得以下输出

在此处输入图片描述

并且edenNotes.bib文件包含

@FOOTNOTE{Note1,key="Note1",note="Some footnote text."}

因此该文件很重要,不应被删除。

相关内容