summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/homework/homework-example-sheet.tex
blob: 00f703f5c1255a5eb8f44a9455e27a2f5c78c304 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
\documentclass[a4paper, 11pt,
  formal title,
  title in boldface,
  % title in sffamily,
  % theorem in new line,
  % twoside,
  hide solution,          % Use this option to hide the solutions/answers
]{homework}


% EDIT THE FOLLOWING INFORMATION AS NEEDED

\pretitle{%
    \scshape
                    The University
    \hfill
                    The Program \& Level
    \\
                    Course ID \& Course Name
    \hfill
                    Year 2023--24
}

\title{%
                    Sheet 1. Title of the current file
}
\author{}
\date{%
                    % \TheDate{2023-12-25}
}


\begin{document}


Here starts the main text.


\section*{First theme}

We shall show that...

\begin{problem}
    A preliminary result.
\end{problem}
\begin{solution}
    \blindtext
\end{solution}

\begin{problem}[Brief description]
    One step ahead.

    \blindtext
\end{problem}
\begin{solution}
    \blindtext[2]
\end{solution}

At this stage, we may conclude that...


\section*{Second theme}

Now we look at...

\begin{problem}[Some prepration]
    This is the prepration for...
    \begin{enumerate}%[itemsep=.5\baselineskip]
        \item First question.
        \begin{solution}
            \blindtext
        \end{solution}
        \item Second question.
        \begin{solution}
            \blindtext
        \end{solution}
        \item Third question.
        \qedhere
        \begin{solution}
            \blindtext
        \end{solution}
    \end{enumerate}
\end{problem}

\begin{problem}[Another problem with many sub-questions]
    \leavevmode % so that the first item start in new line
    \begin{enumerate}%[itemsep=.5\baselineskip]
        \item First question.

            \blindtext

            \begin{solution}
                \blindtext[2]
            \end{solution}
        \item Second question.
        \begin{enumerate}%[itemsep=.3\baselineskip]
            \item First sub-question.

                \blindtext

                \begin{solution}
                    \blindtext[2]
                \end{solution}
            \item Second sub-question.
                \\[.3\baselineskip]
                \blindtext
                \begin{solution}
                    \blindtext[2]
                \end{solution}
        \end{enumerate}
        \item Third question.
            \\[.5\baselineskip]
            \blindtext[2]
            \begin{solution}
                \blindtext[2]
            \end{solution}
        \item Conclusion.
        \qedhere
        \begin{solution}
            \blindtext
        \end{solution}
    \end{enumerate}
\end{problem}


\end{document}