我想在书的附录中附上一些练习,但我无法获得这些练习的正确数字:
\documentclass{book}
\usepackage{exsheets}
\SetupExSheets{
counter-within = chapter ,
counter-format = ch.se.qu
}
\begin{document}
\chapter{foo}
\section{foo one}
\begin{question}
foo one
\end{question}
\appendix
\chapter{bar}
\section{bar one}
\begin{question}
bar one
\end{question}
\end{document}
对于部分1附录A,我预计会有A.1.1第一个问题。然而,我1.1.1第一章的正确编号是哪一个外部附录。因此,数字如下2.1.1附录乙ETC。
我需要做什么才能获得预期的结果?
答案1
您可以在with\SetupExSheets
后使用另一个命令来为章节计数器启用大写数字。\appendix
counter-format=ch[A].se.qu
\documentclass{book}
\usepackage{exsheets}
\SetupExSheets{
counter-within = chapter ,
counter-format = ch.se.qu
}
\begin{document}
\chapter{foo}
\section{foo one}
\begin{question}
foo one
\end{question}
\appendix
\SetupExSheets{
counter-format = ch[A].se.qu
}
\chapter{bar}
\section{bar one}
\begin{question}
bar one
\end{question}
\chapter{Another one}
\section{Foo}
\begin{question}
bar one
\end{question}
\end{document}