18

I am using REVTeX 4.1 with BibTeX for references. The author guidelines for a journal state:

Authors should ensure that the journal article contains a reference in the reference list as follows:

  • See Supplemental Material at [URL will be inserted by publisher] for [give brief description of material].

I used the \footnote command to achieve this, as it produces extra entries in the references section by default.

I would like to refer to the same Supplemental Material "reference" more than once. How can I achieve this?


Minimal example. In the real document I do have a .bib file too, not included here.

% proba.tex
\documentclass[footinbib]{revtex4-1}

\begin{document}
Some text here \footnote{Supplemental Material reference}. % produces ref. [1]

I would like to refer to the same Supplemental Material again here. % refer to [1] here somehow
\end{document}

Note that BibTeX does need to be run for this minimal example to work, according to the REVTeX documentation, despite no .bib file being present here.

pdflatex proba
bibtex proba
pdflatex proba
pdflatex proba

enter image description here

Perhaps the solution is not to use \footnote for this purpose. What should I use in that case?

Szabolcs
  • 2,685
  • Additionally, would it be the same for TeXworks? – Y_gr Jul 03 '14 at 18:01
  • Look at this post http://tex.stackexchange.com/questions/38857/labeling-a-footnotemark – Dox Jul 03 '14 at 18:17
  • @giannis I'm not sure what you mean. Isn't TeXworks just an IDE or editor? – Szabolcs Jul 03 '14 at 18:57
  • @Szabolcs I've just meant if I could use the same code in TeXworks, which is an editor, I think. Already tried what suggested below and works perfectly. – Y_gr Jul 04 '14 at 07:46

2 Answers2

19

Each \footnote under your document setup produces a bibliography key of the form NoteX where X is the regular footnote number. So, in your case, \cite{Note1} would reference the first footnote citation, while (say) \cite{Note17} would reference a citation in the footnotes corresponding to footnote number 17.

Here's a minimal example explaining its usage:

enter image description here

\documentclass[footinbib]{revtex4-1}

\begin{document}
Some text here \footnote{Supplemental Material reference}, \setcounter{footnote}{16}\footnote{something else}.

I would like to refer to the same Supplemental Material again here \cite{Note1}, \cite{Note17}.
\end{document}
Werner
  • 603,163
11

The option footinbib leads to the creation of an extra .bib file with entries of the form:

@MISC{NoteX,note="Supplemental Material reference"}

Instead of using footnotes, you can also add such entries to your .bib file and use standard cite commands.

Alex
  • 5,362