Commit 2eba52fe authored by Fred Drake's avatar Fred Drake

Thinking on comp.text.tex seems to be that it's better to override

\@makefntext than \@footnotetext, so we'll do that instead.
parent e2d1214c
...@@ -137,11 +137,11 @@ ...@@ -137,11 +137,11 @@
% Set up abstract ways to get the normal and smaller font sizes that % Set up abstract ways to get the normal and smaller font sizes that
% work even in footnote context. % work even in footnote context.
\newif\ifpy@infootnote \py@infootnotefalse \newif\ifpy@infootnote \py@infootnotefalse
\let\py@oldfootnotetext\@footnotetext \let\py@oldmakefntext\@makefntext
\def\@footnotetext#1{% \def\@makefntext#1{%
\bgroup% \bgroup%
\py@infootnotetrue \py@infootnotetrue
\py@oldfootnotetext{#1}% \py@oldmakefntext{#1}%
\egroup% \egroup%
} }
\def\py@defaultsize{% \def\py@defaultsize{%
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment