I would like to create a list of tasks using LaTeX. Therefore I created a theorem called task. For some tasks I would like to create additional subtheorems using alphabetic numbering. Currently my document is:
\documentclass[11pt, british, a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[UKenglish]{babel}
\usepackage{amsthm}
\newtheorem{task}{Task}
\newtheorem{subtask}{Task}[task]
\begin{document}
\section{Tasks} % (fold)
\label{sec:number_1}
\begin{task}
Task 1
\end{task}
\begin{subtask}
Subtask 1
\end{subtask}
\begin{subtask}
Subtask 2
\end{subtask}
% section number_1 (end)
\end{document}
This produces:
- Task 1.
- Task 1.1.
- Task 1.2.
My aim is an output like:
- Task 1.
- Task 1.a)
- Task 1.b)
and subsubtasks (I do not know whether this word exists or not):
- Task 1.a.a)
- Task 1.a.b)
How can I achieve this? Is it possible to achieve this with amsthm because I started with this package.
