缩放 Latex 对象

缩放 Latex 对象

想象一下,我有一张宽表,不适合一页:

\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}

在此处输入图片描述

相关内容