使用 exsheets 包打印问题编号旁边的标签

使用 exsheets 包打印问题编号旁边的标签

我想以修改后的形式在每个问题编号的右侧显示每个问题使用的标签,如下所示: S-20-A2, 10-复合物会成为 [模拟 2020 - 变体 2,10 年级 - 复数] 谢谢你!

\documentclass{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{exsheets}
\usepackage{amsmath}
\usepackage{lmodern}
\usepackage[a4paper,left=2cm,right=2cm,top=2cm,bottom=3cm]{geometry}
\usepackage[english]{babel}

\SetupExSheets{%
    use-tags = {20-A2}
}

\begin{document}
    \begin{question}[tags={S-20-A2, 10-Complex}]{5} 
        Content question 1
    \end{question}
    \begin{solution}
        Solution 
    \end{solution}

    \begin{question}[tags={20-A1, 10-Trig}]{5} 
         Content question 2
    \end{question}
    \begin{solution}
        Solution question 2
    \end{solution}


    \begin{question}[tags={20-A2, 10-Trig}]{5} 
        Content question 3
    \end{question}
    \begin{solution}
        Solution question 3
    \end{solution}

%[Simulation 2020 - Variant 2, Grade 10 - Complex Numbers]

\newpage
\printsolutions
\end{document}

相关内容