I am writing a paper for a journal that requires superscript citations and I am using bibtex for my references. I would like to write something of the form, "As proposed in reference 11", while still using some form of \cite or something similar so it will show up in the bibliography. I don't want it to appear, "As proposed in reference^11".
I looked at using \citealias with natbib, but creating an alias of 'reference 11', would mean I know the reference order. If I modify the document and it is no longer 11, this creates a good chance for a mistake. I would appreciate any advice. Thanks in advance.
General ⇒ Alternate citation format
- localghost
- Site Moderator
- Posts: 9201
- Joined: Fri Feb 02, 2007 12:06 pm
Alternate citation format
Perhaps the cite package might do the trick. For further information refer to the documentation. You can access it (if the package is installed) via command prompt on your machine.
Code: Select all
texdoc cite
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Re: Alternate citation format
You're right, thanks a lot. The command is \citen. If I write, "As proposed in reference \citen{CitationName}", it comes out as I intended. Thanks again.