How do I make a bilingual (two-column) or trilingual (three-column) LaTeX document?
E.g.:
| Original language | Translation 1 | Translation 2 | | | | | | | | |
Also, paragraphs from each language must align vertically properly, too.
thanks
How do I make a bilingual (two-column) or trilingual (three-column) LaTeX document?
E.g.:
| Original language | Translation 1 | Translation 2 | | | | | | | | |
Also, paragraphs from each language must align vertically properly, too.
thanks
You may want to take a look at the paracol package. Once loaded, you can execute commands such as
\begin{paracol}{3} % specify three columns...
<text in first column>
\switchcolumn
<text in next column>
\switchcolumn
<text in next column>
\switchcolumn
<text in next, i.e., first column>
...
\end{paracol}
tabularenvironment with three columns. Regarding the language, just load all of them withbabel. – Mario S. E. Oct 10 '13 at 16:43