BibTeX, biblatex and biberspecial citation formatting

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
chait
Posts: 2
Joined: Sun Feb 14, 2010 1:18 am

special citation formatting

Post by chait »

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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX books
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

special citation formatting

Post by gmedina »

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:

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,...
chait
Posts: 2
Joined: Sun Feb 14, 2010 1:18 am

Re: special citation formatting

Post by chait »

Thank you very much. It worked as advertized.
Post Reply