我需要在 latex 中回答我的作业
Assignment 1a
Assignment 1b
Assignment 1c
Assignment 2a
Assignment 2b
我尝试使用 \section*{},但引用不起作用。还有其他方法可以像上面那样使用数字和字母来创建部分和子部分吗?
答案1
这是一种简单的方法,无需使用任何包,只需使用\section
环境即可assignment
。由于这会滥用\section
命令,因此无法在需要常规部分的文档中使用,但可以采用这种方法\subsection
。
\documentclass{article}
\newcounter{assignment}
\renewcommand{\thesection}{Assignment~\arabic{assignment}\alph{section}}
\newenvironment{assignment}{\refstepcounter{assignment}}{\setcounter{section}{0}}
\begin{document}
\begin{assignment}
\section{First sub assignment}
\section{Second sub assignment}
\section{Third sub assignment}
\end{assignment}
\begin{assignment}
\section{First sub assignment}
\section{Second sub assignment}
\end{assignment}
\end{document}