In a work, I have to write a lot of dialogue.
This is my MWE:
\documentclass{article}
\newenvironment{dialogue}{%
\noindent%
\newcommand\one[1]{\textit{##1}\newline}%
\newcommand\two[1]{\textbf{##1}\newline}%
\newcommand\NormalText[1]{##1\newline}%
}{}
\begin{document}
\begin{dialogue}%
\one{bla-bla}
\two{bla-bla}
\one{bla-bla}
\one{bla-bla}
\NormalText{Normal text}
\two{bla-bla}
\end{dialogue}
\end{document}
This code does exactly what I want...
but I ask if it is possible to mimic the enumerate environment like this :
\begin{dialogue}%
\one bla-bla
\two bla-bla
\one bla-bla
\one bla-bla
\NormalText Normal text
\two bla-bla
\end{dialogue}
