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.NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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}
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p