비머: 테이블 문제

비머: 테이블 문제

빔머에 테이블을 만들려고 하면 문제가 발생합니다. 다음은 내 코드입니다.

\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\bottomrulesiunitx

\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}

그 결과는 다음과 같습니다.

여기에 이미지 설명을 입력하세요

관련 정보