I have the following
longtable
and I need to write the name of the legend in the subsequent pages. How can I do it? In addition, a line above "continuación" should appear as well.Code: Select all
\documentclass[
12pt,%
% draft,%
twoside,%
BCOR10mm,%
% bibtotocnumbered,% <= obsolete
bib=totoc, % <= recommended
toc=listof,
toc=bibliography,
numbers=noenddot
]{scrreprt}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[spanish,ngerman,catalan,english]{babel}
\usepackage{longtable}
\begin{document}
\begin{center}
\begin{longtable}{lp{13cm}}
\caption{Preguntas}
\label{tab:preguntas}\\
\hline
\textbf{Num.} & \textbf{Pregunta} \\
\hline \hline
\endfirsthead
\hline
\textbf{Num.} & \textbf{Pregunta} \\
\hline \hline
\endhead
\multicolumn{2}{l}{continuación} \hline
\endfoot
\endlastfoot
5.& ¿Qué dudas o temores tenías antes de comenzar?\\
\end{longtable}
\end{center}
\end{document}
Regards,
Marie