I would like to define some commands that would allow me to easily insert repeating parts in my text. These parts have the same layout, but different content. I know how to define commands and how to pass arguments, but I am not a good latex programmer at all, so I wondered if there's an easy way.
This is an example of such a layout:
Code: Select all
\begin{minipage}[t]{0.5\linewidth}
\textbf{You can:}
\begin{itemize}[leftmargin=*]
\item identify causes of A
\item explain differences between A and B
\end{itemize}
\end{minipage}\hspace{0.1\textwidth}%
\begin{minipage}[t]{0.4\linewidth}
\textbf{Vocabulary}
\begin{itemize}[leftmargin=*]
\item A
\item B
\item C
\end{itemize}
\end{minipage}
Code: Select all
\things_to_know{ {identify causes of A, explain differences between A and B}, {A, B, C} }
Code: Select all
\begin{stuff_to_know}
\item identify causes
\item explain
>>>>>>>
\item A
\item B
\item C
\end{stuff_to_know}