I would like to create a description enumeration which looks like the following:
keyword 1: Short Description of the keyword
A characterization of the keyword
keyword 2: Short Description of the keyword
A characterization of the keyword
As an example:
Animal 1: Lion
A lion is ...
Animal 2: Elephant
An elephant is ...
I tried the following
\begin{description}
\item[Animal1: Lion]\hfill \\
A lion is ...
\item[Animal2: Elephant]\hfill \\
An elephant is ...
\end{description}
The problem is that the text "A lion is ..." is not aligned with the word "Lion".
Can you give me some advise how to create such an environment where I can give the item command a second parameter for the short description which is then correctly aligned with the characterization text? By the way I'm using the koma class scrbook.
