根据标签对项目进行排序

根据标签对项目进行排序

我基本上想要的是编写一个列表,例如 itemize,用一个或多个标签标记每个项目,然后生成一个基于标签创建多个列表的输出,即每个标签应该是一个部分或类似的东西:

在此处输入图片描述

我已经找到了

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

\usepackage{filecontents}
\begin{filecontents*}{foo.tex}
    \begin{pro}{Geometry}
    Find the area of ...
    \end{pro}

    \begin{pro}{Trigonometry}
    The angle ...
    \end{pro}

    \begin{pro}{Algebra}
    Prove that $x^2+1=0$ has no real solution.
    \end{pro}

    \begin{pro}{Geometry}
    Find the radius ...
    \end{pro}
\end{filecontents*}

\NewEnviron{pro}[1]{%
    \IfStrEq{#1}{\CurrentSubject}{\item \BODY}{}
}%

\newcommand*{\CurrentSubject}{}%

\begin{document}
\foreach \Title in {Algebra, Geometry, Trigonometry} {%
    \renewcommand*{\CurrentSubject}{\Title}%
    \section*{\CurrentSubject}
    \begin{enumerate}
        \input{foo}
    \end{enumerate}
}%
\end{document}

但这似乎不太合适,每个项目只能使用一个标签。

有什么可以做到这一点吗?我已经考虑过实现自己的包,但我不熟悉 tex 编程。

更新

我找到了一种修改发布的代码的方法,以实现根据多个标签进行排序:

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

\usepackage{filecontents}
\begin{filecontents*}{foo.tex}
    \begin{pro}{Geometry}{}{}{}{}
    Find the area of ...
    \end{pro}

    \begin{pro}{Trigonometry}{}{}{}{}
    The angle ...
    \end{pro}

    \begin{pro}{Algebra}{Trigonometry}{}{}{}
    Prove that $x^2+1=0$ has no real solution.
    \end{pro}

    \begin{pro}{Geometry}{Algebra}{}{}{}
    Find the radius ...
    \end{pro}
\end{filecontents*}

\NewEnviron{pro}[5]{%
  \IfStrEq{#1}{\CurrentSubject}{\item \BODY}{}
  \IfStrEq{#2}{\CurrentSubject}{\item \BODY}{}
  \IfStrEq{#3}{\CurrentSubject}{\item \BODY}{}
  \IfStrEq{#4}{\CurrentSubject}{\item \BODY}{}
  \IfStrEq{#5}{\CurrentSubject}{\item \BODY}{}
}%

\newcommand*{\CurrentSubject}{}%

\begin{document}
\foreach \Title in {Algebra, Geometry, Trigonometry} {%
    \renewcommand*{\CurrentSubject}{\Title}%
    \section*{\CurrentSubject}
    \begin{enumerate}
        \input{foo}
    \end{enumerate}
}%
\end{document}

因此,请提前指定要使用的标签数量。这种方法可行但不方便 - 如果有人知道如何实现动态化,那就太好了。

如果有人想使用或贡献:https://github.com/maalaria/kite

答案1

以下示例提供了pro环境以接受单个强制参数,该参数可以包含逗号分隔的标签列表。对于每个标签,环境\BODY都存储在宏中<tag>@<num>,然后可以通过按顺序打印\printlist{<tag>}

在此处输入图片描述

\documentclass{article}

\usepackage{pgffor,environ}

\usepackage{filecontents}
\begin{filecontents*}{foo.tex}
\begin{pro}{Geometry}
Find the area of \ldots
\end{pro}

\begin{pro}{Trigonometry}
The angle \ldots
\end{pro}

\begin{pro}{Algebra,Trigonometry}
Prove that $x^2 + 1 = 0$ has no real solution.
\end{pro}

\begin{pro}{Geometry,Algebra}
Find the radius \ldots
\end{pro}
\end{filecontents*}

\makeatletter
\NewEnviron{pro}[1]{%
  \foreach \Title in {#1} {%
    \expandafter\ifcsname c@\Title\endcsname\else% If a counter doesn't exist...
      \newcounter{\Title}%                         ... create it
    \fi
    \stepcounter{\Title}% Another element should be added to particular list
    \edef\x{% Add element to particular list
      \noexpand\expandafter\noexpand\protected@xdef
        \noexpand\csname \Title @\csname the\Title\endcsname\noexpand\endcsname{\BODY}}\x

  }
}
\makeatother

\newcommand{\processfile}[1]{\input{#1}}

\newcommand{\printlist}[2][itemize]{%
  \expandafter\let\expandafter\listend\csname the#2\endcsname
  \begin{#1}
    \foreach \curitem in {1,...,\listend} {
      \item \expandafter\csname #2@\curitem\endcsname
    }
  \end{#1}
}

\begin{document}

\processfile{foo}% Process file with pro environments

Algebra:

\printlist{Algebra}

Geometry:

\printlist{Geometry}

Trigonometry:

\printlist{Trigonometry}

\end{document}

文件的处理是使用 完成的\processfile{<file>}

调用 时没有进行错误检查来查看 是否<tag>存在\processlist{<tag>},但可以添加。

相关内容