Code: Select all
Sections of this chapter\footnote{reference a}$^{,}$\footnote{reference b} discusses blahblah.
1reference a
2reference b
I want them to display as
^1 reference a
^2 reference b
Any help would be much appreciated
Code: Select all
Sections of this chapter\footnote{reference a}$^{,}$\footnote{reference b} discusses blahblah.
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\documentclass[12pt]{report}
\usepackage[symbol]{footmisc}
\DefineFNsymbols{blank}[text]{} \setfnsymbol{blank}
\makeatletter
\renewcommand\@makefntext[1]%
{\noindent\makebox[0pt][r]{\@thefnmark}#1}
\begin{document}
In this chapter\footnote{reference a}$^{,}$\footnote{reference a} we want to show footnote as superscript, not inline with text.
\end{document}
By adjusting this definition or removing it completely you should get what you want. By the way: you don't need to add a superscripted comma manually, footmisc's optionadnaniut wrote:Code: Select all
\makeatletter \renewcommand\@makefntext[1]% {\noindent\makebox[0pt][r]{\@thefnmark}#1}
multiple
will take care of that for you:Code: Select all
\documentclass[12pt]{report}
\usepackage[multiple]{footmisc}
\makeatletter
\renewcommand\@makefntext[1]%
{\noindent\makebox[0pt][r]{\textsuperscript{\@thefnmark}\,}#1}
\makeatother
\begin{document}
In this chapter\footnote{reference a}\footnote{reference b} we want to show footnote as superscript, not inline with text.
\end{document}
cgnieder wrote:But you defined them not be be superscripted:
By adjusting this definition of removing it completely you should get what you want. By the way: you don't need to add a superscripted comma manually, footmisc's optionadnaniut wrote:Code: Select all
\makeatletter \renewcommand\@makefntext[1]% {\noindent\makebox[0pt][r]{\@thefnmark}#1}
multiple
will take care of that for you:
RegardsCode: Select all
\documentclass[12pt]{report} \usepackage[multiple]{footmisc} \makeatletter \renewcommand\@makefntext[1]% {\noindent\makebox[0pt][r]{\textsuperscript{\@thefnmark}\,}#1} \makeatother \begin{document} In this chapter\footnote{reference a}\footnote{reference b} we want to show footnote as superscript, not inline with text. \end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.