我尝试跳过 a 中的换行符,\eledsection
但这两种方法\usepackage{titlesec} \titleformat{\section}[runin]{}{}{}{}[]
都\RedeclareSectionCommand[beforeskip=-.5\baselineskip,afterskip=-1em]{section}
行不通。使用 titlesec 甚至无法编译,另一种解决方案会给我重叠的文本:
\documentclass[paper=b5,fontsize=12pt,twoside=semi]{scrbook}
\usepackage{reledmac}
\Xarrangement[A]{twocol}
\linenummargin{inner}
\firstlinenum{5}
\linenumincrement{5}
\date{}
\RedeclareSectionCommand[
beforeskip=-.5\baselineskip,
afterskip=-1em]{section}
\addtokomafont{chapter}{\normalsize}
\addtokomafont{section}{\normalsize}
\begin{document}
\beginnumbering
\pstart
\eledchapter{Chapter}
\pend
\pstart
\eledsection{Test}
\pend
\pstart
Testtext
\pend
\endnumbering
\end{document}
生成:
有人知道如何解决这个问题吗?