I'm trying to typeset a book with an original text on the left page and its translation on the right page for a commented edition and as part of a doctoral thesis. After searching a lot of hours, I made it, but now I have other problem and I can't find any solution. The problem is that both texts are in verse, and I'd like the verses to be numbered, but whatever I do numbering always begins with the title as the first numbered line. The poem and it's translation are very long texts and I need an easy way to get them numbered and well build. I thought that using verbatim would help, but it doesn't look like. I also tried verse and listing, but it was even worst.
It's my first day with latex.I apologize for my bad understanding of latex terminology and for my faulty english.
Here the .tex:
Code: Select all
\documentclass[12pt,twoside]{book}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[L7x]{fontenc}
\usepackage{geometry}
\usepackage[pangram]{blindtext}
\usepackage{eledmac}
\usepackage{eledpar}
\maxhnotesX{0.4\textheight}
\date{}
\begin{document}
\large
\begin{titlepage}
\centering
{\scshape\LARGE BLABLABLA\par}
\vspace{1cm}
{\scshape\Large BLEBLEBLE\par}
\vspace{1.5cm}
\vfill
traducción de \par
Ba Be Bi \textsc{}
\vfill
\end{titlepage}
\begin{pages}
\begin{Leftside}
\pstart
\section*{\centering\LARGE BLABLABLA \\ \centering\small Blublublu \\ \\}
\begin{verbatim}
Bla ble bli blo blu
Ble Bli Blo Blu Bla
Bli Blo Blu Bla Ble
Bla ble bli blo blu
Ble Bli Blo Blu Bla
Bli Blo Blu Bla Ble
\end{verbatim}}
\blindtext[10]\footnoteAnomk
\blindtext[20]}
\pend
\end{Leftside}
\begin{Rightside}
\beginnumbering
\pstart
\section*{\centering\LARGE Ble Bli Blo \\ \centering\small Ta Te Ti To Tu \\ \\}
\begin {verbatim}
Bla ble bli blo blu
Ble Bli Blo Blu Bla
Bli Blo Blu Bla Ble
Bla ble bli blo blu
Ble Bli Blo Blu Bla
Bli Blo Blu Bla Ble
\end{verbatim}
\blindtext[16]\footnoteAmk
\pend
\endnumbering
\end{Rightside}
\Pages
\end{pages}
\end{document}