나는beamer
을 사용하여 내용을 밝히고 싶은 프레젠테이션입니다 \onslide
. ~ 안에tabularx
(또는 -column tabular
을 사용 하면 p
) -column에 독특한 수직 공백이 생성됩니다 X
. 이 문제가 어디서 발생했는지 및/또는 문제를 해결하는 방법에 대한 아이디어가 있습니까?
내가 사용한 코드는 다음과 같습니다.
\begin{tabularx}{\textwidth}{|l|X|}
\hline
First line & A very long sentence that takes up more than one line because of its length\\
\onslide<2->{Second line} & \onslide<2->{A slightly longer sentence that takes up more than one line because of its length} \\
\hline
\end{tabularx}
또는 p
-column을 사용하면 다음과 같습니다.
\begin{tabular}{|l|p{0.7\textwidth}|}
\hline
First line & A very long sentence that takes up more than one line because of its length\\
\onslide<2->{Second line} & \onslide<2->{A slightly longer sentence that takes up more than one line because of its length} \\
\hline
\end{tabular}
답변1
parbox 시작 부분에 비머 스페셜(또는 모든 스페셜)을 넣지 않아야 합니다.
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{tabular}{|l|p{0.7\textwidth}|}
\hline
First line & A very long sentence that takes up more than one line because of its length\\
\onslide<2->{Second line} & \leavevmode\onslide<2->{A slightly longer sentence that takes up more than one line because of its length} \\
\hline
\end{tabular}
\end{frame}
\end{document}