从外部文件添加非 tex 表的好方法是什么?

从外部文件添加非 tex 表的好方法是什么?

我正在寻求您的建议和想法,关于如何将所有表格作为非 tex 文件添加到 pdf 文件中。
目标是使某人更难(更难)编辑表格在最终 pdf 文件中的外观。
目前,我的所有表格都是单独的 tex 文件,并按以下方式添加:

\begin{table}[tb]
\tabcolsep=0.2cm
\centering
\mycaption{The captio of the table}
\label{tbl:my_table}
\input{some_table}
\end{table}

文件 some_table.tex 将如下所示:

\begin{tabular}{@{}l*{2}{c}*{2}{c}@{}}
\toprule
{} & \multicolumn{2}{c}{First Cat} & \multicolumn{2}{c}{Second Cat} \\
\cmidrule(lr){2-3} \cmidrule(l){4-5}
{}          & FirstCol  & SecondCol &  FirstCol & SecondCol \\
\midrule
FirstRow    &    0.1    &    0.2    &    0.3    &    0.4 \\
SecondRow   &    0.5    &    0.6    &    0.7    &    0.8 \\
\bottomrule
\end{tabular}

一种可能的选择是将文件创建为独立的 pdf 文件,然后添加它们。

希望听到您对此的看法,以及您能想到的更好的解决方案。

相关内容