General ⇒ Superscript citation help
Superscript citation help
Thanks
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
Superscript citation help
I infer that you want this particular behaviour for some selected citation(s) and all the others will be superscripted (if all citations are meant to be in-line citations, then simply don't use the superscript package option). If this is so, one possible solution is to use the optional argument of the \cite command; this will typeset the citation in in-line mode even if the superscript option is used. This, however, will add a comma at the end of the list, so a local redefinition of the \citemid command will be necessary and some space correction. The following example illustrates this idea:
Code: Select all
\documentclass{article}
\usepackage[superscript]{cite}
\begin{document}
blah, blah~{\renewcommand\citemid{}\cite[\hspace*{0.8pt}]{one,two}} blah, blah
\begin{thebibliography}{9}
\bibitem{one} Bib. item one.
\bibitem{two} Bib. item two.
\end{thebibliography}
\end{document}
Re: Superscript citation help
Re: Superscript citation help
Thanks
Superscript citation help
is useless.pazmush wrote:I can't get this to work, it says there are too many } or something