I tried this but the footnote still appears in superscript.
Code: Select all
\renewcommand{\thefootnote}{{\scriptsize\arabic{footnote}}}article class.Thanks,
Eilon
Code: Select all
\renewcommand{\thefootnote}{{\scriptsize\arabic{footnote}}}article class.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[11pt]{article}
\usepackage[T1]{fontenc}
\makeatletter
\def\@makefnmark{\hbox{\normalfont\scriptsize\@thefnmark}}
\long\def\@footnotetext#1{\insert\footins{%
\reset@font\footnotesize
\interlinepenalty\interfootnotelinepenalty
\splittopskip\footnotesep
\splitmaxdepth \dp\strutbox \floatingpenalty \@MM
\hsize\columnwidth \@parboxrestore
\protected@edef\@currentlabel{%
\csname p@footnote\endcsname\@thefnmark
}%
\color@begingroup
\@makefntext{%
\rule\z@\footnotesep\ignorespaces\enspace#1\@finalstrut\strutbox}%
\color@endgroup}}%
\makeatother
\begin{document}
Text \footnote{Footnote}.
\end{document}scrextend package, which lets you use some features in other classes. This package makes the task quite easy.
Code: Select all
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{scrextend}
% Footnote mark in text
\deffootnotemark{\textsuperscript{\thefootnotemark}}
% Footnote mark in footer
\deffootnote{2em}{1.5em}{\scriptsize\thefootnotemark\enskip}
\begin{document}
Text\footnote{Footnote.}.
\end{document}Code: Select all
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\makeatletter
\long\def\@makefntext#1{%
\parindent 1em\noindent \hb@xt@ 1.8em{\hss \normalfont\scriptsize\@thefnmark}\enskip #1}
\makeatother
\begin{document}
Text\footnote{Footnote}.
\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