I am working on a critical edition with reledmac/reledpar and I am using \msdata to mark sections of text witnessed by different manuscripts. I turned sublineation on with \startsub and \endsub for interpolations in my text, so I would like the apparatus of manuscripts to show subline numbers for those sections, but it seems it is not something that I can control with options or commands. Here is a MWE:
% !TEX encoding = utf8
% !TEX TS-program = lualatex
% !TEX spellcheck = it_IT
\documentclass{book}
\usepackage{fontspec}
\setmainfont{Junicode}
\usepackage{polyglossia}
\setmainlanguage{italian}
\usepackage[series={A},noend,nofamiliar,noledgroup,nopbinverse]{reledmac}
\firstlinenum{1}
\linenumincrement{1}
\firstsublinenum{1}
\sublinenumincrement{1}
\Xsublinesep{}
\sublinenumberstyle{alph}
\begin{document}
\beginnumbering
\setstanzaindents{0,0}
\setcounter{stanzaindentsrepetition}{1}
\begin{stanza}
\msdata{ABCDEF}Primo verso&
Secondo verso&
Terzo verso\stopmsdata&
\startsub\msdata{EF}\emph{Primo verso interpolato}&
\emph{Secondo verso interpolato}\stopmsdata\endsub&
\msdata{ABCDEF}Quarto verso&
Quinto verso&
Sesto verso\stopmsdata\&
\end{stanza}
\endnumbering
\end{document}
I would like the second line of the apparatus to read: 3a–b Ms.] EF.
