Beamer:桌子有问题

Beamer:桌子有问题

我在尝试用我的投影仪制作表格时遇到了麻烦。以下是我的代码:

\section{ANÁLISE DE PERFOMANCE DE PORTFÓLIO}
\begin{frame} 
\frametitle{Comportamento dos Mercados}

\hspace{7mm}Quanto maior a volatilidade, maiores ganhos podem ser auferidos agentes especulati-vos, pois, ativos com risco garantem um prêmio.\vspace{0.3cm}

\hspace{7mm}Utilizando a hipótese do random walk e o teste do ADF é possível verificar se um mercado, na hipótese fraca, é eficiente. \vspace{0.3cm}


\begin{tabular}{c | c}
Estatísticas & Valores
\hline \hline
Tau (Observed value) & -2,073
Tau (Critical value) & -0,863
p-value (one-tailed) & 0,563
alpha & 0,05
\end{tabular}


\end{frame}

“放错 \noalign。\hline ->\noalign {\ifnum 0=`}\fi \hrule \@height \arrayrulewidth \futurelet... l.257 \end{frame}”

出现此消息。我的代码有什么问题?

答案1

您没有正确结束表格的行:

\documentclass[]{beamer}

\begin{document}
\begin{frame}
\begin{tabular}{c | c}
Estatísticas & Valores\\
\hline \hline
Tau (Observed value) & -2,073\\
Tau (Critical value) & -0,863\\
p-value (one-tailed) & 0,563\\
alpha & 0,05 % no \\ in the last row
\end{tabular}
\end{frame}
\end{document}

您必须将其放在\\每行的末尾。

其结果是:

在此处输入图片描述

您可以增强表格的视觉效果。如果不是绝对必要,请不要使用垂直线。您也可以使用包booktabs并使用命令\toprule\midrule\bottomrule。另一个增强功能可能是siunitx提供非常有用的数字显示工具的包(也在表格中)。

\documentclass[]{beamer}
\usepackage{booktabs}
\usepackage{siunitx}

\begin{document}
\begin{frame}
\begin{tabular}{l S[table-format=-1.3]}
    \toprule
    Estatísticas & {Valores}\\% enclose cells which are not numbers with {...}
    \midrule
    Tau (Observed value) & -2,073\\
    Tau (Critical value) & -0,863\\
    p-value (one-tailed) & 0,563\\
    alpha & 0,05\\ % \\ in the last row because of the \bottomrule
    \bottomrule
\end{tabular}
\end{frame}
\end{document}

其结果是:

在此处输入图片描述

相关内容