BibTeX, biblatex and biber ⇒ Change Citation Style Just Once in Document
Change Citation Style Just Once in Document
For example, right now all of my citations look like this:
This is a normal sentence with a citation at the end, blah, blah, blah.[sup]23[/sup]
where the superscript, “23,” is the number of that citation corresponding to its entry in the bibliography at the end.
But I would like to change it to this in rare circumstances:
As can be seen in Reference 23, blah, blah, blah
where now “23” is in-line with the rest of the text, and not as a superscript, and will still reference an entry in the final bibliography.
Of course, in this example I am hard-coding in "23" for discussion purposes, when in reality it should autonumber based on where it actually falls in the document.
How can I do this?
Currently I am using the natbib package to make my citations using the \cite{} command to references from a bibtex file.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Re: Change Citation Style Just Once in Document
The solution may be found here:
http://www.latex-community.org/forum/vi ... 50&t=20434
I used the \citenum{} command.
Question solved.