How can I doubly indent some lines of text?
The general idea is...
Normal Once indented Once indented Twice indented Once indented ...
The following is my attempt but it only indents once.
for each $v \in win$\\
\addtolength{\leftskip}{1cm}
if ($pl(v) = 1 \& \exists (v,v') \in E : v' \in win$)\\
{\addtolength{\leftskip}{1cm}$win \cup= v; st \cup = \{v \rightarrow v'\}$}\\
if ($pl(v) = 2 \& \forall (v,v') \in E : v' \in win$)\\
{\addtolength{\leftskip}{1cm}$wim \cup= v;$}\\
if ($pl(v) = 2 \& \exists (v,v') \in E : v' \in lose$)\\
{\addtolength{\leftskip}{1cm}$lose \cup=v$;}\\
Could someone please tell me a better way of doing this, and/or why my attempt doesn't work?
Many thanks.

