23 Settembre 2014 alle 8:32
#96924
::
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}
`