davidebond” post=72154Intendevo questo. Mantenendo la formattazione delle note.
`\usepackage[hang]{footmisc}
\setlength{\footnotemargin}{1.5em}
\usepackage{etoolbox}
\makeatletter
\patchcmd{\@makefntext}{\@makefnmark}{\mod@makefnmark}{}{}
\patchcmd{\@makefntext}{\@makefnmark}{\mod@makefnmark}{}{}
\patchcmd{\@makefntext}{\@makefnmark}{\mod@makefnmark}{}{}
\patchcmd{\@makefntext}{\@makefnmark}{\mod@makefnmark}{}{}
\patchcmd{\@makefntext}{\@makefnmark}{\mod@makefnmark}{}{}
\def\mod@makefnmark{\hbox{\bfseries\@thefnmark.}}
% filetto lungo come la giustezza
\renewcommand{\footnoterule}{\kern-3\p@\hrule\kern 2.6\p@}
\makeatother`
Se hai una TeX Live aggiornata, puoi evitare la lunga serie di [tt]\patchcmd[/tt] con
`\usepackage{regexpatch}
\makeatletter
\xpatchcmd*{\@makefntext}{\@makefnmark}{\mod@makefnmark}{}{}
\def\mod@makefnmark{\hbox{\bfseries\@thefnmark.}}
% filetto lungo come la giustezza
\renewcommand{\footnoterule}{\kern-3\p@\hrule\kern 2.6\p@}
\makeatother`
L’interessante pacchetto regexpatch di un noto autore, è molto più potente anche di xpatch dello stesso noto autore. 🙂
Ciao
Enrico