zl程序教程

您现在的位置是:首页 >  其它

当前栏目

Latex 公式缩放 Latex scales an equation to fit page width

to an 公式 缩放 Page LaTeX width fit
2023-09-27 14:24:26 时间

用Latex排版时,公式长度超过行宽度时可以用 resizebox 对公式进行自动缩放,用法如下:

1、调用宏包:

\usepackage{graphicx}

2、使用以下命令:

\begin{equation}
\resizebox{.9\hsize}{!}{$A+B+C+D+E+F+G+H+I+J+K+L+M+N+O+P+Q+R+S+T+U+V+W+X+Y+Z$}
\end{equation}

注意,需要加入$ 符号

 

 

参考:https://stackoverflow.com/questions/3106587/scale-an-equation-to-fit-exact-page-width