15

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

Geremia
  • 2,201

1 Answers1

19

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}
Mico
  • 506,678