Estou tendo problemas ao tentar fazer uma mesa no meu projetor. O seguinte é o meu código:
\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 mal colocado. \hline ->\noalign {\ifnum 0=`}\fi \hrule \@height \arrayrulewidth \futurelet... l.257 \end{frame}"
Está aparecendo esta mensagem. O que há de errado com meu código?
Responder1
Você não finalizou as linhas da sua tabela corretamente:
\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}
Você tem que colocar \\
no final de cada linha.
Isto resulta em:
Você pode melhorar a mesa visualmente. Não use linhas verticais se não for absolutamente necessário. Além disso , você pode usar o booktabs
pacote e usar os comandos \toprule
e . Outra melhoria poderia ser o pacote que fornece ferramentas muito úteis para exibir números (também em tabelas).\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}
Isto resulta em: