BibTeX, biblatex and biber ⇒ special citation formatting
special citation formatting
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.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
special citation formatting
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}