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.
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
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}
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