自动列表/表格呈现

自动列表/表格呈现

我正在寻找一种自动呈现数据列表的解决方案。在当前情况下,我的输入数据是字符串列表,应以带有连续数字的三列列表形式显示:

+--------------+-------------+------------+
| 1  xyzxyz    | 2  sadsdasd | 3  sadasdf |
| 4  dfasdfas  | 3  23ea3ad  | 4  898sd   |
|                   .....                 |
+-----------------------------------------+

现在,拥有固定数量的项目就足够了(在我的情况下是 30),所以我刚刚定义了 30 个带有值的不同宏,然后由模板引用这些宏,其中所有内容都是硬编码的。

当然,这是非常静态的,所以我正在寻找一个更好的解决方案,其中 tex 输入只是定义这样的数据:

\putItem{xyzxyz}
\putItem{sadsdasd}
\putItem{dfasdfas}
\putItem{23ea3ad}
\putItem{898sd}
...

有人有好主意吗?

谢谢

答案1

\documentclass{article}

\newcommand\putItem[1]{\refstepcounter{enumi}\makebox[.3\textwidth][l]{\theenumi. #1}\hfill\ignorespaces}
\begin{document}

\begin{flushleft}
\putItem{xyzxyz}
\putItem{sadsdasd}
\putItem{dfasdfas}
\putItem{23ea3ad}
\putItem{898sd} 
\putItem{xyzxyz}
\putItem{sadsdasd}
\putItem{dfasdfas}
\putItem{23ea3ad}
\putItem{898sd}
\end{flushleft}

\end{document}

答案2

这里有一个轻微比 David Carlisle 的解决方案有所改进,因为可以指定一个简单的逗号分隔列表:

在此处输入图片描述

笔记:

  • 如果允许在其他枚举环境中使用,请使用自定义计数器。
  • 每次调用时计数器都会休息\ListTable

代码:

\documentclass{article}
\usepackage{pgffor}
\usepackage{xstring}

\newcounter{MyCounter}
\newcommand\putItem[1]{\refstepcounter{MyCounter}\makebox[.3\textwidth][l]{\theMyCounter. #1}\hfill\ignorespaces}
\begin{document}

\newcommand{\DefaultNumberOfColumns}{3}%
\newcommand{\ListTable}[2][\DefaultNumberOfColumns]{%
    % #1 = optional number of columns, defaults to \DefaultNumberOfColumns
    % #2 = common separated list
    \setcounter{MyCounter}{0}%
    \noindent
    \edef\ListMembersExpanded{#2}%
        \foreach \x in \ListMembersExpanded {%
            \IfStrEq{\x}{}{}{% Need to eliminate any empty enteries (allows for trailing comma)
                \putItem{\x}%
            }%
        }%
}%

\ListTable{%
    xyzxyz,
    sadsdasd,
    dfasdfas,
    23ea3ad,
    898sd,
    xyzxyz,
    sadsdasd,
    dfasdfas,
    23ea3ad,
    898sd,
}%

\end{document}

答案3

根据我的回答如何使用 datatool 将多个数据库的内容放在一个表中?,我想出了这个。目前,这个 MWE 从文件 data.txt 读取数据,该文件当前包含

dfkdsfs
sdf
dsfdsfgsdfg
ds4543
rg
ere
r
ewrf
sfs
edfds
swdf
sdfdsfdsfdsf
rtg
435
rtgre
t546
tgr
ret
4trswe
dfdf
fdfsdf
435435rsggf
dsfds
gff
vcvx
gfgfd
asdfdsf
rt
34
32e3
~

虽然外部文件可以省去,但如果\readdef{data.txt}{\tmpa}被替换为

\def\tmpa{dfkdsfs sdf dsfdsfgsdfg ds4543 rg ere r ewrf sfs edfds swdf
sdfdsfdsfdsf rtg 435 rtgre t546 tgr ret 4trswe dfdf fdfsdf 435435rsggf
dsfds gff vcvx gfgfd asdfdsf rt 34 32e3 ~
}

最后一行中的~是填充符(我会回过头来讨论)。我还假设数据条目没有空格,这是我从 OP 的描述中推断出来的。宏\readArrayij{\tmpa}{first}{3}将数据读入一个标识为 的数组中first,该数组有 3 列。部分行会被丢弃,所以我在数据末尾添加了一个空格和换行符,这样就不会丢失部分行。

该结构采用 Herbert\tabtoks方法(如何使用 `\whiledo` 以编程方式制作表格行?)将数据添加到表格中,每次 3 个元素,在本例中,向前端添加一个索引标识符。

\documentclass{article}
\usepackage{readarray}
\newcounter{index}
\newcounter{mycell}
  % Based on:
  % https://tex.stackexchange.com/questions/7590/
  % how-to-programmatically-make-tabular-rows-using-whiledo
  \makeatletter
  \newcounter{tabindex}
  \newtoks\@tabtoks
  \newcommand\addtabtoks[1]{%
    \@tabtoks\expandafter{\the\@tabtoks\stepcounter{tabindex}#1}}
  \newcommand*\resettabtoks{\@tabtoks{}}
  \newcommand*\synctabindex[1]{\setcounter{tabindex}{\value{#1}}}
  \newcommand*\printtabtoks{\the\@tabtoks}
  \makeatother
\begin{document}
\readdef{data.txt}{\tmpa}
\readArrayij{\tmpa}{first}{3}

%
\resettabtoks
\setcounter{index}{0}
\setcounter{mycell}{0}
\synctabindex{index}
\whiledo{\value{index} < \numexpr\firstROWS\relax}{%

  \addtabtoks{%
    \stepcounter{mycell}
    \themycell: \arrayij{first}{\thetabindex}{1} &
    \stepcounter{mycell}
    \themycell: \arrayij{first}{\thetabindex}{2} &
    \stepcounter{mycell}
    \themycell: \arrayij{first}{\thetabindex}{3} 
    \ifthenelse{\equal{\thetabindex}{\nrows}}{\\\hline}{\\\hline}%
  }
  \addtocounter{index}{1}%
}
\begin{tabular}{|l|l|l|}
  \hline
  \printtabtoks
\end{tabular}
\end{document}

在此处输入图片描述

相关内容