I want a three-column paracol environment where the second and third column have equal width and this width is three times the width of the first column.
The command \columnratio seems indicated for this task. Unfortunately no example at all of their use is provided in the user manual. This older question gives a good, clear answer but only for two columns.
Here are my failed attempts :
\documentclass{article} \usepackage{paracol} \usepackage{lipsum} \usepackage{lmodern} \begin{document} \columnratio{1,3,3} \begin{paracol}{3} \lipsum[2] \switchcolumn \lipsum[2] \switchcolumn \lipsum[2] \end{paracol} \columnratio{3,3} \begin{paracol}{3} \lipsum[2] \switchcolumn \lipsum[2] \switchcolumn \lipsum[2] \end{paracol} \end{document} 