縮放乳膠物體

縮放乳膠物體

想像一下,我有一張寬表,不適合頁面:

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

在此輸入影像描述

相關內容