我需要在乳胶代码中表示这一点它超出了投影仪类 \开始{表格}[]
\AtBeginEnvironment{tabular}{\scriptsize}
\resizebox{\textwidth}{!}{%
\begin{tabular}{|p{5cm}|}\hline
\textbf{Chatting topics:} William Shakespeare; Sun; Jane Austen\\
\textbf{Knowledge:} ...... Shakespeare invented the names Miranda, Jessica, and Olivia. ...... \\ \hline
\textbf{Dialog}\\
......\\
A: Do you like shakespeare?\\
B: Yes a little bit. He is often called england’ s national
poet and the "bard of avon".\\
A: He is a great dramatist that influenced a lot of people,
like Joenesbo. \\ \hline
\textbf{Response 1:} Did you know that Ronald Reagan was
rejected for a movie role because an entertainment executive
didn’ t look presidential enough?\\
\textbf{Response 2:} I love shakespeare’ s works. Did you know
that he invented the names Miranda, Jessica, and Olivia ?\\ \hline
\end{tabular}
}
\end{table}
答案1
我不认为tabular
标记有帮助,而且缩放表格也很少产生好的结果。
它似乎适合正常大小的文本,而无需选择\scriptsize
(在演示格式中很难阅读)
\documentclass{beamer}
\newcommand\myrule{\par\smallskip\hrule\medskip}
\begin{document}
\begin{frame}
\textbf{Chatting topics:} William Shakespeare; Sun; Jane Austen
\myrule
\textbf{Knowledge:} ...... Shakespeare invented the names Miranda, Jessica, and Olivia. ......
\myrule
\textbf{Dialog} ......
A: Do you like shakespeare?
B: Yes a little bit. He is often called england’ s national
poet and the "bard of avon".
A: He is a great dramatist that influenced a lot of people,
like Joenesbo.
\myrule
\textbf{Response 1:} Did you know that Ronald Reagan was
rejected for a movie role because an entertainment executive
didn’ t look presidential enough?
\myrule
\textbf{Response 2:} I love shakespeare’ s works. Did you know
that he invented the names Miranda, Jessica, and Olivia ?
\end{frame}
\end{document}