スプレッドタブに基づく新しい環境

スプレッドタブに基づく新しい環境

ドキュメント内の複数の場所で使用されている、かなり複雑なヘッダーとフッターを持つ がありますspreadtab。実際のコンテンツは、ほんの数行の単純な行で構成されています。各テーブルでヘッダーとフッターを繰り返さなくても済むように、新しい環境 (またはマクロ) を定義したいと思います。

私が見つけた唯一の有効なアプローチは、以下に基づいています。https://tex.stackexchange.com/a/312860/102921そしてhttps://tex.stackexchange.com/a/207313/102921

\documentclass{scrartcl}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[main=english]{babel}

\usepackage{array, environ, spreadtab, xpatch}

\makeatletter
\def\spreadtab@ii{\IfSubStr\ST@tab{\noexpand\input}{\expandafter\spreadtab@iii\ST@tab\@nil}\relax}
\def\spreadtab@iii#1\input#2#3\@nil{%
    \long\def\spreadtab@iv##1\spreadtab@iv{\endgroup\def\ST@tab{#1##1#3}\spreadtab@ii}%
    \begingroup
    \everyeof{\spreadtab@iv\noexpand}%
    \expandafter\spreadtab@iv\@@input#2
}
\xpretocmd\spreadtab@i\spreadtab@ii{}{}
\makeatother

\newwrite\mytabularwrite

\NewEnviron{mytable}{%
    \immediate\openout\mytabularwrite=mytabularfile.tex%
    \immediate\write\mytabularwrite{\unexpanded\expandafter{\BODY}}%
    \immediate\closeout\mytabularwrite
    \begin{spreadtab}{{tabular}{|l|ccc|}}
        \hline
        & @Heading 1 & @Heading 1 & @Heading 1 \\\hline % here is a complex header
        \input{mytabularfile}
        @ Total & \STcopy{>}{sum(b2:[0,-1])} &  & \\\hline % end a complex footer
    \end{spreadtab}
}

\begin{document}
    \begin{mytable}
        @ Label 1 & 1000 & 500 & 800 \\\hline 
        @ Label 2 & 2000 & 1500 & 1800 \\\hline
        % At most 10 of such lines per table
    \end{mytable}
\end{document}

一時ファイルを使用せずに済む方法はありますか? 最終文書にはこのようなテーブルが 100 個程度含まれるため、速度が少し心配です。

関連情報