The formatting of the article I am writing uses the same notation to cite references and footnotes (they both appear in brackets, i.e. [1-3]). I want to have a combined citation for both a reference and a footnote. The way I am trying right now generates two separate citations at the end of the sentence, for example:
\documentclass[reprint, superscriptaddress, amsmath, amssymb, aps, article]{revtex4-1}
\begin{document}
Here is a nice sentence \footnote{A good point}\cite{ref1}.
\end{document}
becomes:
Here is a nice sentence [1][2].
while I would like it to look like:
Here is a nice sentence [1,2].
Does anyone know how to do this? I have tried looking at other postings on the forum, but I could only find information on how to add citations internally to a footnote. I think I could probably force it to work by adding a bibtex item with my desired footnote, but that will make it very hard for me to get an accurate word count (references do not count, while footnotes do). It also just seems a bit inelegant. Thanks for your help!
\citecommand i.e., even\cite{foo}\cite{bar}will not yield [1, 2], only\cite{foo,bar}will. So\footnote{foo}\cite{bar}is really no different. – Alan Munn Jul 19 '17 at 00:23\cite{ref1, footnotelabel}or some trick like that. I am still very new to latex though and I am not really sure how\cite{}function works or if it is that flexible. – user139488 Jul 19 '17 at 00:26.bibfile. See How to refer to same footnote twice in REVTeX? (The second answer more relevant to you, I think.) – Alan Munn Jul 19 '17 at 00:31\article{blankref, journal = {}, }you can use:\cite{ref1, [{footnote text here}] blankref}and it will appear in the references just like a footnote (do not add a period to your footnote text though). At least then you can edit the text in the main latex file. It still is not counted with texcount though. – user139488 Jul 19 '17 at 01:07