コンパイル後に正常に動作するこのテーブルを作成しましたが、上記のメッセージが表示されました。何が問題なのか理解するために、どなたか助けていただけませんか?
\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}
答え1
2つの問題:
最初の行には1+4=5列しかありませんが、表には6列あります
スキップを追加する代わりに、パッケージ
\addlinespace
から使用することをお勧めしますbooktabs
厳密に言えば問題ではありませんが、0,13
周りのスペースが間違っている可能性が高いです。パッケージ,
を確認することをお勧めします。siunitx
\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}
答え2
\medskip
申し訳ありませんが、ない期待通りの動作をします。
簡単な例を考えてみましょう
\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}
そしてその出力
ご覧の通り、縦方向のスペースが追加されます下に1 行目と 2 行目の間ではなく、2 行目です。
代わりに、siunitx
と を使用します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}
水平線はできるだけ避けたいので、不要な水平線を除いた表も示しました。
2 番目の表では、垂直方向のスペースが追加され、太字は使用されていません。
\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}
太字を削除するのは良いことですが、追加の垂直スペースはそれほど重要ではありません。