\documentclass{Beamer}
\begin{document}
\begin{table}
\begin{tabular}{l l l}
\toprule
Band & & \\
\hline
Total stop band & No propagation possible & All of the incident field is reflected back \\ % inserting body of the table
Partial stop band & Propagation possible for some directions & Some/all energy converted to Bloch waves \\
Pass band & Propagation possible in all directions & Some/all energy converted to Bloch waves \\
\bottomrule
\end{tabular}
\caption{Table caption}
\end{table}
\end{document}
Asked
Active
Viewed 5,030 times
0
2 Answers
1
You have two possibilities (as stated John Kormylo in his comment):
- reduce font size to
tiny - reduce font size to
smalland insteadtabularuse for exampletabularxwhich broke lines and reduce\tobcolsepto 3pt.
MWE:
\documentclass{Beamer}
\usepackage{booktabs,tabularx}
\newcolumntype{L}{>{\raggedright\arraybackslash}X}
\begin{document}
\begin{frame}
\begin{table}\tiny
\begin{tabular}{@{}l l l@{}}
\toprule
Band & & \\
\midrule
Total stop band
& No propagation possible
& All of the incident field is reflected back \\
Partial stop band
& Propagation possible for some directions
& Some/all energy converted to Bloch waves \\
Pass band
& Propagation possible in all directions
& Some/all energy converted to Bloch waves \\
\bottomrule
\end{tabular}
\caption{Table caption: case 1}
\end{table}
\begin{table}
\small
\setlength{\tabcolsep}{3pt}
\begin{tabularx}{\hsize}{@{}l LL@{}}
\toprule
Band & & \\
\midrule
Total stop band
& No propagation possible
& All of the incident field is reflected back \\
Partial stop band
& Propagation possible for some directions
& Some/all energy converted to Bloch waves \\
Pass band
& Propagation possible in all directions
& Some/all energy converted to Bloch waves \\
\bottomrule
\end{tabularx}
\caption{Table caption: case 2}
\end{table}
\end{frame}
\end{document}

Zarko
- 296,517
0
I find this way to solve your problem, just add the adjust box package in your preamble and copy the following code
\documentclass{beamer}
\usepackage{booktabs}
\usepackage{adjustbox}
\begin{document}
\begin{frame}
\begin{table}
\begin{adjustbox}{max width=\textwidth}
\begin{tabular}{l l l}
\toprule
Band & & \\
\hline
Total stop band & No propagation possible & All of the incident field is reflected back \\ % inserting body of the table
Partial stop band & Propagation possible for some directions & Some/all energy converted to Bloch waves \\
Pass band & Propagation possible in all directions & Some/all energy converted to Bloch waves \\
\bottomrule
\end{tabular}
\end{adjustbox}
\caption{Table caption}
\end{table}
\end{frame}
\end{document}
Very23
- 949
- 1
- 8
- 19
microtypepackage can save some space by using micro-typographic changes (slight adjustments of the kernel, of the space, etc.) – Clément May 21 '15 at 19:43