테이블이 예상한 대로 작동하도록 하는 데 문제가 있으며 문제가 비머, 다중 열 또는 수학 모드에 있는지 알 수 없습니다.
\documentclass[table]{beamer}
\usepackage{booktabs}
\begin{document}
\begin{frame}
\begin{center}
\begin{tabular}{@{}cccc@{}}
\multicolumn{2}{c}{$y=x$} & \multicolumn{2}{c}{$y=x^2$}\\\midrule
$x$ & $y$ & $x$ & $y$ \\ \midrule
1 & 1 & 1 & 1 \\
2 & 2 & 2 & 4 \\ \bottomrule
\end{tabular}
\end{center}
\end{frame}
\end{document}
두 번째 행은 $x$ & $y$ & $x$ & $y$
중앙에 정렬되지 않고 왼쪽 정렬됩니다. 여러 열 행과 수학 모드가 포함된 행 사이에 텍스트 행을 넣으면 센터링이 작동하지만 그대로는 작동하지 않으며 원하지 않거나 필요하지 않은 행을 추가하지 않고 문제를 해결하는 이유와 방법을 모르겠습니다. 나는 업데이트된 패키지와 WriteLaTeX를 사용하여 XeLaTeX 및 LuaLaTeX를 구축했으며 모두 동일한 결과를 얻었습니다.
답변1
비교해주세요:
\documentclass[table]{beamer}
\usepackage{booktabs}
\begin{document}
\begin{frame}
\begin{center}
%\begin{tabular}{@{}cccc@{}}
\begin{tabular}{cccc@{}}
\multicolumn{2}{c}{$y=x$} & \multicolumn{2}{c}{$y=x^2$}\\\midrule
$x$ & $y$ & $x$ & $y$ \\ \midrule
1 & 1 & 1 & 1 \\
2 & 2 & 2 & 4 \\ \bottomrule
\end{tabular}
\medskip
\begin{tabular}{@{}cccc@{}}
\multicolumn{2}{c}{$y=x$} & \multicolumn{2}{c}{$y=x^2$}\\\midrule
$x$ & $y$ & $x$ & $y$ \\ \midrule
1 & 1 & 1 & 1 \\
2 & 2 & 2 & 4 \\ \bottomrule
\end{tabular}
\end{center}
\end{frame}
\end{document}
따라서 첫 번째 @{}
.