I would like to solve the following problem with reledmac. In my critical edition (poetry), I have to include some readings for the titles, too. Since these titles are not lines of the poems, they are not numbered. So, I devised the following solution (here with a mock poem):
% !TeX encoding = UTF-8 % !TeX TS-program = xelatex % !TeX spellcheck = it_IT % !TeX root = Example.tex % !BIB TS-program = biber \documentclass[a4paper,11pt]{book} %Critical edition \usepackage{reledmac} \usepackage{verse} \usepackage{afterpage} \Xarrangement[A,B,C]{paragraph} \Xbeforenotes[A,B,C]{2em plus.4em minus.4em} \Xafternote[A,B,C]{2em plus.4em minus.4em} \Xnotenumfont{\bfseries} \Xnumberonlyfirstinline[A,B,C] \Xnumberonlyfirstintwolines[A,B,C] \Xlemmaseparator[A,B,C]{]} \Xbeforelemmaseparator[A,B,C]{0.1em} \Xafterrule[A,B,C]{1em} \setmsdataposition{regular-msdata} \setmsdataseries{A,B,C} \Xstanza[A,B,C] \Xstanzaseparator[A,B,C]{.} \begin{document} \beginnumbering \numberstanzatrue \setstanzaindents{0,0,0,0} \setcounter{stanzaindentsrepetition}{2} \stanza \skipnumbering \textbf{\edtext{Lorem}{\lemma{9 tit. {\normalfont lorem}}\Cfootnote[nonum]{lorem B, lores C}} ipsum}& \edtext{dolor}{\Bfootnote{dolos M}} sit \edtext{amet}{\Afootnote{amat L}},& consectetur adipiscing elit. \& \numberstanzafalse \endnumbering \end{document} However, while removing the number, nonum and nosep do not avoid the space: therefore, these notes are not in line with the ones that are not marked by nonum and nosep, as you can see in my mock test:
How can I solve/override this problem? Thank you!
