为什么 resizebox 在我的通知模板上不起作用

为什么 resizebox 在我的通知模板上不起作用

我必须使用 informs 类来进行期刊操作研究,并且我有一个非常大的旋转表,当我刚使用类文章时,我使用 resizebox 来使其适合页面,但是当我使用 informs 类时,它不允许我使用此命令,我不知道如何再适合我的表格。有人能帮我吗?

          \documentclass[opre,nonblindrev]{informs3}
          \usepackage{multirow}
          %\usepackage{cleveref}
          \usepackage{algpseudocode}
          \usepackage{algorithm}
          \usepackage{graphicx}
          \usepackage{pgf}
          \usepackage{afterpage}
          \begin{document}
           \afterpage{%
           \clearpage%
           \begin{rotate}
          \begin{table}[c]
          \centering
          \TABLE
          {Summary Table of Literature Review.\label{clist}}
          %\resizebox{1.4\textwidth}{!}
          {\begin{tabular}{cccccccc}    
           first paper in addition & Yes   & No    & Yes   & No    & No    & No    & Total Completion Time \\
         \hline
         \up \down

            second paper in completion & Special & Yes   & No    & Yes   & No    & Road disaster and limitation & Minimzing the cost \\
             \end{tabular}}
              {}
          \end{table}%
          \end{rotate}%
          \clearpage%
          }

          \end{document}

在网站上,他们提到他们在 informs 类中使用了 \graphicx 包,但我添加了它以确保我可以使用 resize 命令。informs 类可在以下位置使用: https://www.informs.org/Find-Research-Publications/INFORMS-Journals/Author-Portal/LaTeX-Style-Files

错误是:!\Gscale@@box 的参数有一个多余的}。

答案1

我明白了,我必须在 resizebox 命令之前添加一个额外的 {:所以它会像这样:

      \begin{rotate}
      \begin{table}[c]
      \centering
      \TABLE
      {Summary Table of Literature Review.\label{clist}}
      {\resizebox{1.4\textwidth}{!}
      {\begin{tabular}{cccccccc}    
       first paper in addition & Yes   & No    & Yes   & No    & No    & No    & Total Completion Time \\
     \hline
     \up \down

        second paper in completion & Special & Yes   & No    & Yes   & No    & Road disaster and limitation & Minimzing the cost \\
         \end{tabular}}}
          {}
      \end{table}%
      \end{rotate}%

相关内容