类似于 LaTeX 答案在多列环境中从左到右逐项列出,在其中\usepackage{tasks}
使用,我想将项目按行排列,像这样,但需要一个 ConTeXt 解决方案:
a. test b. test c. test d. test
e. test d. test f. test g. test
h. test i. test j. test k. test
我试验了很多代码,最接近的结果是这样的,但是项目是按列的顺序显示的,而不是按行显示的:
\starttest
\startitemize[a,columns,five,packed,broad]
\dorecurse{15}{\item test\endgraf}
\stopitemize
\stoptext
如何在 ConTeXt 中创建按列排列的枚举行?
答案1
我问了一个非常相似的问题不久前在列表中。这可能是您要寻找的内容,或者至少可以为您指明正确的方向:
\starttext
\startitemize[a,horizontal,five,packed,broad]
\dorecurse{15}{\startitem test\stopitem}
\stopitemize
\stoptext
这使