I want to create a book with poetry in two columns, side-by-side, in different languages. After some googling, I chose the ledmac and ledpar packages. But then I found myself doing hacks, and I wonder if there is a better way.
In particular, I need the following:
Aligned stanzas (in other words, starting lines of stanzas with the same numbers from both columns are at the same height).
astanzaenvironment does that.Numbered stanzas (only for the left column). I am using the macro from
ledpardocumentation:
\newcommand*{\stanzanum}[2][\stanzaindentbase]{%
\hskip -#1\llap{\textbf{#2}}\hskip #1
\ignorespaces}
% Use: \stanzanum{<dimen: whitespace after # of stanza>}{<text: # of stanza>}
\newcommand{\interstanza}{\par\mbox{}\skipnumbering}
No line numbers. I set
\firstlinenum{999}in the beginning of the document.Footnotes for stanzas. Something like:
\begin{astanza} blablabla \end{astanza} \stanzafootnote{foobar}And this is supposed to create a footnote with the number of the stanza. This can be done by creating the counter for stanza number and the macro with this number and
\footnotetext.
So, are there any packages that can do it already? Or did I miss something in documentation? Maybe ledmac and ledpar were not the best choice? I find it suspicious that I am writing macros for things that seem to be common tasks.
Thank you in advance. Sorry if the question is stupid.
