blob: 838e06b7690a2930f7833c22b4f24e784b37f2b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
% \iffalse
%%% From File: footnote.dtx
% \fi
%
% \begin{macrocode}
%<*footnote>
% \end{macrocode}
%
% \subsection{Ñíîñêà}
%
% \end{macrocode}
% \DescribeMacro{\thefootnote}\index{Ìàêðîñû!\verb+\thefootnote+}
% Ôîðìàò ñ÷åò÷èêà ñíîñîê.
% \begin{macrocode}
\def\thefootnote{\@arabic\c@footnote}
% \end{macrocode}
% \DescribeMacro{\thempfootnote}\index{Ìàêðîñû!\verb+\thempfootnote+}
% Ôîðìàò ñ÷åò÷èêà ñíîñîê âíóòðè îêðóæåíèÿ |minipage|.
% \begin{macrocode}
\def\thempfootnote{{\itshape\@alph\c@mpfootnote}}
% \end{macrocode}
% \DescribeMacro{\footnoterule}\index{Ìàêðîñû!\verb+\footnoterule+}
% Êîìàíäà, ðèñóþùàÿ ëèíèþ.
% \begin{macrocode}
\def\footnoterule{%
\kern-3\p@\hrule\@width.4\columnwidth\kern2.6\p@
}
% \end{macrocode}
% \DescribeMacro{\prethefootnote}\index{Ìàêðîñû!\verb+\prethefootnote+}
% \DescribeMacro{\postthefootnote}\index{Ìàêðîñû!\verb+\postthefootnote+}
% \DescribeMacro{\prefootnotetext}\index{Ìàêðîñû!\verb+\prefootnotetext+}
% Äîïîëíèòåëüíûé òåêñò äî è ïîñëå íîìåðà ñíîñêè, ïåðåä òåêñòîì ñíîñêè.
% \begin{macrocode}
\providecommand\prethefootnote{}
\providecommand\postthefootnote{}
\providecommand\prefootnote{\;}
% \end{macrocode}
% \DescribeMacro{\footnoteindent}\index{Èíòåðâàëû!\verb+\footnoteindent+}
% \begin{macrocode}
\Dis@deflength{\footnoteindent}{\parindent}
% \end{macrocode}
% \DescribeMacro{\@makefnmark}\index{Ìàêðîñû!\verb+\@makefnmark+}
% Ôîðìàò ìåòêè ñíîñêè.
% \begin{macrocode}
\def\@makefnmark{\hbox{\prethefootnote%
\@textsuperscript{\normalfont\@thefnmark}%
\postthefootnote}}
% \end{macrocode}
% \DescribeMacro{\@makefntext}\index{Ìàêðîñû!\verb+\@makefntext+}
% Êîìàíäà, ñîçäàþùàÿ òåêñò ñíîñêè.
% \begin{macrocode}
\newcommand\@makefntext[1]{%
\noindent\hspace{\footnoteindent}%
\@makefnmark\prefootnote #1
}
%</footnote>
% \end{macrocode}
|