hey guys I need to put this sentence on two different rows but I'm not able to use \multirow together with \multicolumn. Can you help me?
\begin{document}
\begin{tabular}{@{} r S S @{}}
\midrule\multicolumn{3}{c} {The displayed standard errors are robust and clustered at country level. Level of statistical significance of coefficients:)}
\midrule
\end{tabular}
\end{document}
multirowsince you have a single row? – Bernard Apr 20 '18 at 17:12\parboxinside the multicolumn, no need for multirow. Ask g for a full minimal example is standard here. Makes it a lot easier for others to test code and help – daleif Apr 20 '18 at 17:18\begin{document}
\begin{center} \begin{tabular}{@{} r S S @{}} \toprule & {$Y_{i_t}$} & {$I_{i_t}$} \ \midrule\multicolumn{3}{c}{The displayed standard errors are robust and clustered at country level. Level of statistical significance of coefficients:$***$(1$%$), $**$(5$%$), $*$(10$%$).} \midrule \end{tabular} \end{center}
\end document}
– federica Apr 20 '18 at 17:25