Consider the following LaTeX document
\documentclass{article}
\usepackage{enumerate}
\begin{document}
\begin{enumerate}[(a)]
\item Here is the 1st line.
\item Here is the 2nd line.
\end{enumerate}
\end{document}
It gives the following output
(a) Here is the 1st line.
(b) Here is the 2nd line.
However, I'd like to get the following output
\documentclass{article}
\usepackage{enumerate}
\begin{document}
\begin{enumerate}[(a)]
\item Here is the 1st line. (a) Here is the 1st line.
\item Here is the 2nd line. (b) Here is the 2nd line
\end{enumerate}
\end{document}
That is the left side of the columns will contain the whole text and the right side of the columns will contain the original output of the TeX code. Is there any way to do this?


showexpl. – Mensch Apr 01 '13 at 14:45