Re: Inserire una \footnote nell’ambiente \tabular. Impossibile?

#1280
Up
0
Down
::


Ciao,

ho scoperto che se si utilizza anche il pacchetto hyperref, nascono nuovi problemi per le note in ambiente tabular. Prendiamo come esempio il testo scritto prima da EV (ho tolto i commenti):

`
\documentclass{article}

\usepackage{color} % 1999/02/16 v1.0i
\usepackage{footnote} % 1997/01/28 1.13

\makesavenoteenv{tabular}

\begin{document}
\begin{tabular}{cc}
hello\footnote{footnote} & world \\
ciao & mondo
\end{tabular}
\end{document}
`

Compilato in questo ordine funziona alla perfezione. Provate però a mettere altre note (io ne ho messe altre tre) e ad usare il pacchetto hyperref:

`
\documentclass{article}

\usepackage{color}
\usepackage{footnote}
\usepackage{hyperref}

\makesavenoteenv{tabular}

\begin{document}
\begin{tabular}{cc}
hello\footnote{footnote 1} & world\footnote{footnote 2} \\
ciao\footnote{footnote 3} & mondo\footnote{footnote 4}
\end{tabular}
\end{document}
`

Provate a compilarlo e vedrete che l’unico collegamento ipertestuale che funziona è quello dell’ultima nota (nota quattro). Come mai?

Ringrazio chiunque provi a risolvere questo problema.

Go to top