Re: Cambiare font e dimensione delle tabelle

#22943
DMW
    Up
    0
    Down
    ::


    Potevi mettere un esempio. Comunque se usi l’ambiente table basta che metti tutto dentro di esso e prima di tabular. Esempio:
    `
    \begin{table}
    \small\centering % o \footnotesize al posto di \small
    \begin{tabular}..

    \end{tabular}
    \end{table}`

    Se invece non usi table puoi scrivere
    `\begin{center}
    \small
    \begin{tabular}..

    \end{tabular}
    \end{center}`

    Per cambiare l’interlinea puoi aggiungere \linespread{1.3}\selectfont dopo \small
    oppure usare il pacchetto setspace e scrivere una cosa tipo
    `
    \begin{spacing}{1.3}\small
    \begin{tabular}
    ..
    \end{tabular}
    \end{spacing}`
    dentro table o center, dipende da quello che usi.

    per cambiare famiglia di font devi dire cosa vuoi fare, ma te lo sconsiglio.

    Ciao

    Andrea

    Go to top