输入表格数据时出现问题

输入表格数据时出现问题

有人能帮我找出这里真正的问题是什么吗?我正在用从 Stata 导出的一些数据创建一个表,但似乎无法让命令input正常工作。如果我从输入文件中粘贴代码,那么一切都会正常工作。代码

\documentclass{article}
\usepackage{booktabs}
\newcommand{\sym}[1]{\rlap{$#1$}} % for symbols in Table
\begin{document}
  \begin{table*}\centering
    \begin{tabular}{@{}cccccccc@{}}\toprule
      & \multicolumn{3}{c}{A} & \phantom{abc}& \multicolumn{3}{c}{B}\\ \cmidrule{2-4} \cmidrule{6-8}
      & 1 & 2 & 3 && 1 & 2 & 3\\
      \midrule
      C     &       0.60  &       0.951 &       0.245         & &       1.151         &       1.563         &       0.586         \\
                  &     (0.262)         &     (0.364)         &     (0.310)         & &     (0.620)         &     (0.905)         &     (0.696)         \\
      \midrule
      \(N\)       &      919629         &      468093         &      451536         & &      186271         &       94771         &       91500         \\

      \bottomrule
    \end{tabular}
  \end{table*}
\end{document}

生成以下漂亮的表格。

Pretty table

但如果我按原样使用 Stata 生成的文件(“minimal_data”)

\midrule
C     &       0.606  &       0.951 &       0.245         & &       1.151         &       1.563         &       0.586         \\
            &     (0.262)         &     (0.364)         &     (0.310)         & &     (0.620)         &     (0.905)         &     (0.696)         \\
\midrule
\(N\)       &      919629         &      468093         &      451536         & &      186271         &       94771         &       91500         \\

和...一起

\documentclass{article}
\usepackage{booktabs}
\newcommand{\sym}[1]{\rlap{$#1$}} % for symbols in Table
\begin{document}
  \begin{table*}\centering
    \begin{tabular}{@{}cccccccc@{}}\toprule
      & \multicolumn{3}{c}{A} & \phantom{abc}& \multicolumn{3}{c}{B}\\ \cmidrule{2-4} \cmidrule{6-8}
      & 1 & 2 & 3 && 1 & 2 & 3\\
      \input{minimal_data}
      \bottomrule
    \end{tabular}
  \end{table*}
\end{document}

然后我遇到各种错误。

相关内容