基于TikZ生成动态表格

基于TikZ生成动态表格

我希望使用 TikZ 根据问题数量创建一个 3*x 表,如下图所示。

在此处输入图片描述

我定义了一个方法,代码如下:

\newcounter{colnumber}
% Define Chinese numbers
    \newcommand{\chinesenumber}[1]{%
      \ifcase#1\or 一\or 二\or 三\or 四\or 五\or 六\or 七\or 八\or 九\or 十\fi
    }

    % Define the command to create the table
    \newcommand{\createtable}[1]{%
      \setcounter{colnumber}{#1} % Set the number of columns
      % \pgfmathsetmacro{\cellwidth}{\textwidth/\thecolnumber} % Calculate the width of each cell
      \begin{tikzpicture}[every node/.style={font=\fontsize{14}{18}\selectfont}]
        \tikzset{cell/.style={rectangle, draw=black, minimum height=1.5cm, minimum width=2.8cm, align=center, inner sep=0pt}}
        % Draw the column titles
        \node[cell] at (2.8,0) {Num}; % First column title
        \foreach \x in {2,...,\thecolnumber}
        \node[cell] at (\x*2.8,0) {\chinesenumber{\numexpr\x-1}}; % Chinese number column titles
        \node[cell] at (\thecolnumber*2.8+2.8,0) {Total score}; % Last column title
        % Draw the rows
        \node[cell] at (2.8,-1.5) {Score}; % First column second row
        \node[cell] at (2.8,-3) {Teacher}; % First column third row
        \foreach \y in {1,...,3}
        \foreach \x in {2,...,\thecolnumber}
        \node[cell] at (\x*2.8,-\y*1.5) {}; % Fill other cells
        \foreach \y in {2,...,3}
        \node[cell] at (\thecolnumber*2.8+2.8,-\y*1.5) {}; % Fill the last column's other cells
        % Draw the outer frame
        \draw (1.4,0.75) rectangle (\thecolnumber*2.8+4.2,-4.5); % Adjust size based on rows and columns
      \end{tikzpicture}
    }

\createtable{4}当我在 main.tex 中使用命令 ( ) 时,我可以生成如下所示的表格。

在此处输入图片描述

但是好像多了两行。另外,当问题太多时,表格会超出页面。我该如何解决这个问题?

答案1

\tblrbody用 初始化\tl_new:N \tblrbody

内容用 收集\tl_build_put_right:Nn。此过程用 开始\tl_build_begin:N,用 结束\tl_build_end:N。此后,将选项expand=\tblrbody提供给放置的tblr环境。\tblrbody

行数取决于后面的数字\int_step_inline:nn

在此处输入图片描述

\documentclass[border=6pt]{standalone}
\usepackage{tabularray}
\begin{document}
\ExplSyntaxOn
\tl_new:N \tblrbody
\tl_build_begin:N \tblrbody
\int_step_inline:nn { 4 }
  {
    \tl_build_put_right:Nn \tblrbody { #1 & & \\ }
  }
\tl_build_end:N \tblrbody
\ExplSyntaxOff
\begin{tblr}[expand=\tblrbody]{
  hlines,
  vlines
}
Number & Score & Teacher\\
\tblrbody
Total score & & \\
\end{tblr}
\end{document}

相关内容