Re: Problema con Tabelle – Multirow e dintorni

#96924
Up
0
Down
::


Come riportato anche nell’Arte di scrivere con Latex (sezione documentazione di questo forum) si deve utilizzare il pacchetto multirow per questo

aggiungi quindi al preambolo \usepackage{multirow} e poi

`\begin{table}
\centering
\begin{tabular}{llll}
\toprule
\multicolumn{3}{c}{\textbf{Parameters}}& \multirow{2}*{\textbf{Output}} \\
\cmidrule(r){1-3}
\textbf{Name} & \textbf{Description} & \textbf{Example} \\
\midrule
uuid & The UUID of the beacon & B9407F30-F5F8-466E-AFF9-25556B57FE6D & \multirow{3}*{Centrato}\\

major & The major number of the beacon & 1 \\

minor & The minor number of the beacon & 2 \\

\bottomrule
\end{tabular}
\end{table}
`

Go to top