I need to format the citations where the ref number appears as a superscript and in the References section, the number again is a superscript (e.g., the number 1 below is a superscript). How can I create this formatting? Is it possible to do that without using bibtex? thanks in advance.
1G. Kürbitz, “Electro-optic imaging,” in The Optics Encyclopedia: Basic Foundations and Practical Applications, Vol. 1, edited by Th.G. Brown, K. Creath, H. Kogelnik, M.A. Kriss, J. Schmit, M.J. Weber (Wiley-VCH, Weinheim, 2004), pp. 549-585.
BibTeX, biblatex and biber ⇒ special citation formatting
special citation formatting
Hi,
since you don't want to use BibTeX, a possible solution would be to use the super option of the cite package (for the number of the citation references) and an appropriate redefinition of the \@biblabel command (for the number of the label in the thebibliography environment).
Take a look at the following example:
since you don't want to use BibTeX, a possible solution would be to use the super option of the cite package (for the number of the citation references) and an appropriate redefinition of the \@biblabel command (for the number of the label in the thebibliography environment).
Take a look at the following example:
Code: Select all
\documentclass{article}
\usepackage[super]{cite}
\makeatletter
\renewcommand\@biblabel[1]{\textsuperscript{#1}}
\makeatother
\begin{document}
As mentioned in \cite{one,two} there are...
As mentioned in \cite{two} there are
\begin{thebibliography}{9}
\bibitem{one} bibitem one.
\bibitem{two} bibitem two.
\end{thebibliography}
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: special citation formatting
Thank you very much. It worked as advertized.