我正在尝试使用“reledmac”和“reledpar”包并排打印两个部分。
但是,通过 lualatex 返回了以下错误:
! Missing number, treated as zero.
<to be read again>
\l@dLcolrawbox1
l.18 \begin{Leftside}
我遗漏了什么命令吗?这是 MWE:
\begin{filecontents*}{\jobname.xmpdata}
\Title{Sacrat\'issimum}
\Author{M.}
\Language{es}
\Keywords{Rosa}
\Publisher{}
\end{filecontents*}
\documentclass[b6paper, 10pt, twoside, openright, final]{memoir}
\setlrmarginsandblock{1.25cm}{.5cm}{*}
\setulmarginsandblock{1.5cm}{*}{1}
\checkandfixthelayout{}
\usepackage[]{reledmac}
\usepackage[]{reledpar}
\usepackage[x-1a]{pdfx}
\begin{document}
\begin{pairs}
\begin{Leftside}
\beginnumbering
\pstart
\section{Prologo}
\input{capitulo_a1}
\pend
\endnumbering
\end{Leftside}
\begin{Rightside}
\beginnumbering
\pstart
\section*{\centering Nota}
\input{capitulo_a2}
\pend
\endnumbering
\end{Rightside}
\end{pairs}
\Columns
\end{document}