Questions tagged [paracol]

about the paracol package for typesetting multicolumn text in parallel

The package offers the paracol environment that typesets the contents of two columns (e.g. of a bilingual document) in parallel.

The paracol environment accepts a mandatory and an optional argument as follows:

\begin{paracol}{<number of column>}[<single-column spanning text>]

Switching between the columns can be done using the \switchcolumn command. With its starred version (\switchcolumn*) the contents of the columns are synchronized as can be seen from the following MWE. This command also accepts an optional argument as follows: \switchcolumn[<column number>] (with 0 = leftmost column)

enter image description here

\documentclass{article}
\usepackage{paracol}

\begin{document}
\begin{paracol}{2}[\section{paracol with \emph{unsynchronized} columns}]
This text goes into the first column 
\switchcolumn
This is a longer text that goes into the second column.
\switchcolumn
This text goes into the first column 
\switchcolumn
This is a longer text that goes into the second column.
\end{paracol}


\begin{paracol}{2}[\section{paracol with \emph{synchronized} columns}]
This text goes into the first column 
\switchcolumn
This is a longer text that goes into the second column.
\switchcolumn*
This text goes into the first column 
\switchcolumn
This is a longer text that goes into the second column.
\end{paracol}
\end{document}

As alternative to \switchcholumn, the paracol package also offers the column and the nthcolumn (as well as the leftcolumn and rightcolumn) environments. Their use can be seen from the following MWE. The starred variants again synchronize the columns.

\documentclass{article}
\usepackage{paracol}

\begin{document}
\begin{paracol}{2}
  \begin{column}
    This text goes into the first column 
  \end{column}
  \begin{column}
    This is a longer text that goes into the second column.
  \end{column}
  \begin{column*}
    This text goes into the first column 
  \end{column*}
  \begin{column}
    This is a longer text that goes into the second column.
  \end{column}
  \begin{nthcolumn}{1}
    This is some text that goes into the second column
  \end{nthcolumn}
  \begin{leftcolumn*}
    This text goes into the first column
  \end{leftcolumn*}
  \begin{rightcolumn}
    This is a longer text that goes into the second column.
  \end{rightcolumn}
\end{paracol}
\end{document}

The widths of the columns can be changed by either using \columnratio or \setcolumnwidth.

The package also handles single and twocolumn floats and footnotes as well as colored text and background.

176 questions
6
votes
3 answers

Three column layout

My boss requires a three column layout for a report: Column 1: All headings below sections (subsection, subsubsection, ...). Heading text should break in the first column. Column 2: The main text Column 3: References, remarks, etc. The content here…
5
votes
1 answer

paracol with manyfoot

I try to combine the two mentioned packages, as in the following…
4
votes
1 answer

Paracol: vertical line between selected columns

How should I do to have vertical line only between the second and the third column? Thank you. \documentclass{book} \usepackage{blindtext} \usepackage{paracol} \setlength{\columnseprule}{1pt} \setcolumnwidth{0.30\textwidth, 0.30\textwidth,,…
3
votes
1 answer

Make paracol column #2 always inner and column #1 outer

How do I make paracol's first column on the left side of even pages and on the right side of odd pages (and vice versa for paracol's second column)? Even pages: | Column #1 | Column #2 | | | | | | | Odd…
Geremia
  • 2,201
3
votes
2 answers

Parallel numbering in columns

I have a bilingual text in two columns using paracol. I want to number them in parallel while using switchcolumn commands, as shown below. How can I do…
usr203050
  • 373
  • 4
  • 16
2
votes
0 answers

Column alignment problem when using paracol package

I am currently encountering a top-alignment problem when using the paracol package to typeset three columns of three-language text: https://i.stack.imgur.com/lC7DB.jpg The text used in my MWE is the first paragraph in Aristotle's Physics…
GL_n
  • 193
2
votes
2 answers

Failing to set content side by side in a 3 column document

I am trying to write a process document, and I am trying to show a frame/workflow process diagram right next to it, but it seems not to want to merge within the exact page where the current text is. If anyone could share any advice or suggestions…
Jeff
  • 23
1
vote
1 answer

How can I align enumeration items in paracol?

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…
Palle
  • 93
1
vote
1 answer

paracol creates empty lines

I tried to use package paracol because I want to put similar theorems near one another, so reader can compare them. But I put attention that original text grow up from 290 to 320. Looking what happens I find small…
1
vote
1 answer

Problem with paracol: a particular use of "switchcolumn" differentiates column width

Please take a look at the following code and its output: The use of switchcolumn before itemize widens the column width (compared to the itemize1 sentence). For some reasons, I need to keep on using this syntax and want to eliminate this difference.…
1
vote
1 answer

Paracol: How to change the style only for 3 columns?

In my document I use 2 columns and 3 columns. I want to change only the width of the 3 columns with \setcolumnwith{}. The 2 columns should be…
1
vote
1 answer

paracol: How to reset footnote counter every page?

Is there a way to reset the footnote counter every page without getting errors and warnings? If I use \usepackage[perpage]{footmisc} I get an error. If I use \usepackage{perpage} \MakePerPage{footnote} I get a warning. MWE…
1
vote
2 answers

remove indent globally from the \paracol paragraph

I am using \paracol for aligning the column across the pages. However, on the right-hand side, there is always some indent before starting of every paragraph. Please help me to avoid that? Following is my code: {\documentclass[11pt]{article}…
0
votes
0 answers

Problems to show tables (with NiceTabular) using paracol package

I am doing a long table using NiceTabular and paracol packages for to show in three columns. The long of the table not a problem because I do two diferent tables, each for column. The really problem is when after compile (at least three times) the…
Darío
  • 449
  • 1
  • 6
0
votes
0 answers

Justification in paracol

I'm trying to typeset a cover using the package paracol. Please see the MWE and the pdf. My problem is that I would like all the beginning of the lines to aligned on left side. I can obtain this only playing with horizontal spaces, but it is not…
Haim
  • 487
1
2