revtex ドキュメント (4-1) の任意の場所でを使用すると\footnote{text}
、ドキュメントは未定義の引数エラーでコンパイルを拒否し、その.tex
ファイル以外のすべてのファイルを削除して最初から再コンパイルしない限り、脚注をコメントアウトしてもコンパイルできません。何が起こっているのでしょうか?
これは、bibtex と の相互作用に関係していますrevtex
。参考文献を削除すると、正常にコンパイルされます。私の短い例では、例の長さが 26 行しかないにもかかわらず、33 行目を指しているため、この数字は無意味です。
エラー:! Undefined control sequence.<argument> $\DOTSI \intop \ilimits@ _{-\infty }^\infty e^{-\protect \mathac... determinant.}
\documentclass[12pt,preprint,longbibliography,aps,prl]{revtex4-1}
\usepackage{amsmath, amsthm, amssymb}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{wrapfig}
\usepackage{color}
\begin{document}
\title{stuffing}
\author{John doe}
\begin{abstract}
stuff stuff stuff
\end{abstract}
\maketitle
\appendix
\section{Introduction}
where the integral \cite{pairwiseonly} is evaluated over all possible particle positions.\footnote{$\int_{-\infty}^\infty e^{-\vec{x}^T A \vec{x}+\vec{B}^T \vec{x}} d^nx= \sqrt{ \frac{(\pi)^n}{\det{A}} }e^{\frac{1}{4}\vec{B}^{T}A^{-1}\vec{B}}$. This can be verified by applying the unitary transform $a^\dagger a = 1$, where this diagonalizes A, and then performing the integral in eigenspace. Such a transformation does not change the determinant.}
\section*{References}
\bibliographystyle{apsrev}
\bibliography{hydrodynamics}
\end{document}
答え1
revtex4-1
脚注に対して非常に奇妙な方法で作用し、参考文献セクションに印刷するために保存します。
使用\protect\int
:
positions.\footnote{%
$\protect\int_{-\infty}^\infty e^{-\vec{x}^T A \vec{x}+\vec{B}^T \vec{x}} d^nx=
\sqrt{\frac{(\pi)^n}{\det{A}} }e^{\frac{1}{4}\vec{B}^{T}A^{-1}\vec{B}}$.
This can be verified by applying the unitary transform $a^\dagger a = 1$, where
this diagonalizes $A$, and then performing the integral in eigenspace.
Such a transformation does not change the determinant.}
答え2
[nofootinbib] オプションを使用します:
\documentclass[nofootinbib,12pt,preprint,longbibliography,aps,prl]{revtex4-1}
これにより、脚注がページの下部に配置されます。
ありがとう@egreg。私も同じ問題を抱えていましたが、\protect\intでエラーが解消されました。