Re: centrare verticalmente una longtable

#64420
tom
    Up
    0
    Down
    ::


    non posso perché la mia tabella è strutturata così
    `% intestazione iniziale

    \toprule
    \endfirsthead
    % intestazione normale

    \toprule
    \endhead
    % piede normale

    \endfoot
    % piede finale
    \bottomrule

    \endlastfoot
    % corpo della tabella \pagebreak \pagebreak \pagebreak \pagebreak

    eccetera`

    quindi in realtà lo spazio che tu mi hai suggerito dovrebbe andare PRIMA dell’intestazione normale, e DOPO del piede normale. ma facendo una cosa del genere
    `% intestazione normale
    \noalign{\vspace*{\fill}}

    \toprule
    \endhead
    % piede normale

    \noalign{\vspace*{\fill}}
    \endfoot`

    non funge…

    Go to top