I'm new to LaTeX (I'm working with pdfLaTeX) and have found such great stuff here so far. This is my first time asking a question here so if I've left anything out of the question or the MWE or included anything I shouldn't have, let me know and I'll edit.
I'm working on a bilingual Latin/English edition of a novel using the parallel package, but every time I want the text to start a new paragraph, it starts a new page instead. Any thoughts on how I can fix this?
documentclass[openany]{book}
\usepackage{fontenc}[utf8]
\usepackage[latin,english]{babel}
\usepackage{parallel}
\begin{document}
\mainmatter
\newcommand{\bi}[2]{
\selectlanguage{latin}\ParallelLText{#1}\selectlanguage{english}\ParallelRText{#2}
\ParallelPar
}
\chapter{Chapter Title}
\begin{Parallel}[p]{}{}
\bi{
Paragraph 1 in Latin
}
{
Paragraph 1 in English
}
\bi{
Paragraph 2 in Latin
}
{
Paragraph 2 in English
}
\end{Parallel}
\end{document}
poption ofParallelenvironment by looking really quickly into the package code. I would suggest you use another option. – KersouMan May 11 '20 at 13:36paracol. I haven't used it myself, but the documentation looks like paragraphs are parallel, so if they're not the same length there is blank space, but they continue on the same page if there's room. – barbara beeton May 11 '20 at 19:55