Если я использую \footnote{text}
где-либо в документе revtex (4-1), документ откажется компилироваться из-за ошибки неопределенного аргумента и не сможет скомпилироваться, даже если вы закомментируете сноску без удаления всех файлов, кроме этого файла, .tex
и перекомпиляции с нуля. Что происходит?
Это что-то связанное с взаимодействием между bibtex и revtex
; если вы удалите библиографию, то она нормально скомпилируется. В моем коротком примере она указывает на строку 33, хотя пример состоит всего из 26 строк, так что это число бессмысленно.
Ошибка:! 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 устранил ошибку