如何在 Latex 中为缩放表创建 \newenvironment
我尝试将表定义为新环境。
\newenvironment{scaledtable}[1]{%
\begin{table}[h]
\caption{xxx}
\label{tab:xxx}
\begin{center}
\begin{tabular}{rcrrrrrrrrrrrrcc}
}{
\hline
\end{tabular}
\end{center}
\end{table}}
我遇到的问题是我无法使用scalebox{}。如果我将右括号放入环境的结束定义中,则乳胶将无法再分配括号。由于 pdflatex,我也无法使用 PSricks。
I try to define a table as a new environment.
\newenvironment{scaledtable}[1]{%
\begin{table}[h]
\caption{xxx}
\label{tab:xxx}
\begin{center}
\begin{tabular}{rcrrrrrrrrrrrrcc}
}{
\hline
\end{tabular}
\end{center}
\end{table}}
The problem I have is that I can't use scalebox{}. If I put the closing bracket into the end definition of the environment, latex can't assign the brackets anymore. I also can not use PStricks because of pdflatex.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
\lrbox
临时存储表格,然后对其进行缩放工作原理如下(
0.5
是缩放因子):Use
\lrbox
to temporarily store the table, then scale itWorks like this (
0.5
is the scale factor):