Fiz essa tabela que depois de compilada funciona corretamente mas recebi a mensagem acima: alguém pode me ajudar para entender o que está errado?
\begin{tabular}{cp{1.5cm}p{1.5cm}p{1.5cm}p{1.5cm}p{1.5cm}}
\bigskip
\multicolumn{1}{c}{\large\textbf{\underline{Model}}}&\multicolumn{4}{c}{\large\textbf{\underline{Parameters}}}\\
\medskip
& $\mu$ & $\alpha$ & $\beta$ & $\lambda_p$ & $\lambda_b$ \\ \hline
\medskip
\textbf{Poisson} & - & - & - & $2,66\times10^{-2}$ & - \\ \hline
\medskip
\textbf{ Hawkes} & close to 0 & 3.53 & 3.97 & - & - \\ \hline
\medskip
\textbf{Branching} & - & - & - & - & $0,13\times10^{-2}$ \\ \hline
\end{tabular}
Responder1
Dois problemas:
sua primeira linha possui apenas 1+4=5 colunas, enquanto sua tabela possui 6 colunas
em vez de tentar adicionar pulos, sugiro usar
\addlinespace
obooktabs
pacote
Não é um problema propriamente dito, mas 0,13
o espaçamento ao redor ,
provavelmente estará errado. Sugiro dar uma olhada no siunitx
pacote
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{tabular}{cp{1.5cm}p{1.5cm}p{1.5cm}p{1.5cm}p{1.5cm}}
% \bigskip
\multicolumn{2}{c}{\large\textbf{\underline{Model}}}&\multicolumn{4}{c}{\large\textbf{\underline{Parameters}}}\\
% \medskip
& $\mu$ & $\alpha$ & $\beta$ & $\lambda_p$ & $\lambda_b$ \\ \hline
\medskip
\textbf{Poisson} & - & - & - & $2,66\times10^{-2}$ & - \\ \hline
\medskip
\textbf{ Hawkes} & close to 0 & 3.53 & 3.97 & - & - \\ \hline
\medskip
\textbf{Branching} & - & - & - & - & $0,13\times10^{-2}$ \\ \hline
\end{tabular}
\end{frame}
\end{document}
Responder2
Desculpe, mas \medskip
faznãofaça o que você espera.
Considere o exemplo simples
\documentclass{article}
\begin{document}
\begin{tabular}{cc}
\hline
a & b \\
\hline
\medskip
c & d \\
\hline
\end{tabular}\qquad
\begin{tabular}{cc}
\hline
a & b \\
\hline
c & d \\
\hline
\end{tabular}
\end{document}
e sua saída
Como você pode ver, o espaço vertical é adicionadoabaixoa segunda linha, não entre a primeira e a segunda linha.
Você deseja, em vez disso, usar siunitx
e booktabs
:
\documentclass{article}
\usepackage{siunitx,booktabs,array}
\begin{document}
\begin{tabular}{
>{\bfseries}l
S[table-format=1.2]
S[table-format=1.2]
S[table-format=1.2]
S[table-format=1.2e-1]
S[table-format=1.2e-1]
}
\toprule
\multicolumn{1}{c}{\textbf{Model}} & \multicolumn{5}{c}{\textbf{Parameters}}\\
\cmidrule(r){1-1} \cmidrule(l){2-6}
& $\mu$ & $\alpha$ & $\beta$ & $\lambda_p$ & $\lambda_b$ \\
\midrule
Poisson & {--} & {--} & {--} & 2,66e-2 & {--} \\
\midrule
Hawkes & {close to 0} & 3.53 & 3.97 & {--} & {--} \\
\midrule
Branching & {--} & {--} & {--} & {--} & 0,13e-2 \\
\bottomrule
\end{tabular}
\bigskip
\begin{tabular}{
>{\bfseries}l
S[table-format=1.2]
S[table-format=1.2]
S[table-format=1.2]
S[table-format=1.2e-1]
S[table-format=1.2e-1]
}
\toprule
\multicolumn{1}{c}{\textbf{Model}} & \multicolumn{5}{c}{\textbf{Parameters}}\\
\cmidrule(r){1-1} \cmidrule(l){2-6}
& $\mu$ & $\alpha$ & $\beta$ & $\lambda_p$ & $\lambda_b$ \\
\midrule
Poisson & {--} & {--} & {--} & 2,66e-2 & {--} \\
Hawkes & {close to 0} & 3.53 & 3.97 & {--} & {--} \\
Branching & {--} & {--} & {--} & {--} & 0,13e-2 \\
\bottomrule
\end{tabular}
\end{document}
Prefiro evitar o máximo possível de regras horizontais, por isso mostrei também a tabela sem as desnecessárias.
A segunda tabela, com algum espaço vertical adicionado e sem negrito:
\begin{tabular}{
l
S[table-format=1.2]
S[table-format=1.2]
S[table-format=1.2]
S[table-format=1.2e-1]
S[table-format=1.2e-1]
}
\toprule
\multicolumn{1}{c}{Model} & \multicolumn{5}{c}{Parameters}\\
\cmidrule(r){1-1} \cmidrule(l){2-6}
& $\mu$ & $\alpha$ & $\beta$ & $\lambda_p$ & $\lambda_b$ \\
\midrule
Poisson & {--} & {--} & {--} & 2,66e-2 & {--} \\
\addlinespace
Hawkes & {close to 0} & 3.53 & 3.97 & {--} & {--} \\
\addlinespace
Branching & {--} & {--} & {--} & {--} & 0,13e-2 \\
\bottomrule
\end{tabular}
Remover o negrito é bom, o espaço vertical adicional não é realmente importante.