\begin{tabular}
Some very wide table
\end{tabular}
我可以缩放该对象而不用重新调整字体大小吗?
答案1
\documentclass[]{article}
\begin{document}
\resizebox{\textwidth}{!}{%
\begin{tabular}{|c|c|}
\hline
a & b \\
\hline
c & d \\
\hline
\end{tabular}
}
\resizebox{2cm}{!}{%
\begin{tabular}{|c|c|}
\hline
a & b \\
\hline
c & d \\
\hline
\end{tabular}
}
\end{document}