I am using the paracol package to add two columns to my document. In this document, I have an enumeration in each column and I want each item (which uses up multiple rows of text each, varying between left and right column) to be aligned vertically between the columns.
This is my basic setup so far:
\documentclass{article}
\nonstopmode
\usepackage[margin=2cm,twoside]{geometry}
\usepackage[utf8]{inputenc}
\usepackage{paracol}
\usepackage[shortlabels]{enumitem}
\usepackage[explicit]{titlesec}
\usepackage[T1]{fontenc}
\begin{document}
\begin{paracol}{2}
\begin{leftcolumn*}\noindent
\begin{enumerate}
\item Foo \\
Two line foo \\
Three line foo
\item Bar
\item Baz
\end{enumerate}
\end{leftcolumn*}
\begin{rightcolumn}\noindent
\begin{enumerate}
\item Foo
\item Bar \\
Two line bar
\item Baz
\end{enumerate}
\end{rightcolumn}
\end{paracol}
\end{document}
Compiling this code results in the following output:
Is there an option to synchronize these enumerations, such that items 2. and 3. are at the same vertical position, that does not involve switching between columns after each item and manually restoring counters?

