I'm using paracol to build a document composed by a header, followed by text in two columns, as in the example:
\documentclass[11pt, a4paper]{article} \usepackage{paracol,lipsum} \begin{document} \lipsum[1] \vspace{1cm} \columnratio{0.29,0.69} \begin{paracol}{2} \setlength{\columnseprule}{0.4pt} \setlength{\columnsep}{2em} \begin{leftcolumn} \section{Section One} \lipsum [1-2] \end{leftcolumn} \begin{rightcolumn} \section{section two} \lipsum[3-4] \end{rightcolumn} \end{paracol} \end{document} which gives:
How can I remove the excess in the rule length above the section titles, but keeping the rule in the rest of the text? In other words: how can I set the rule length?

