我新发现了reledmac
/reledpar
包并尝试根据我的需求配置它们。这是我的(并非最小的)示例。
\documentclass[parskip]{scrreprt}
% showframe --> To show the margins
\usepackage[showframe]{geometry}
\usepackage{xcolor}
\usepackage[]{reledmac} % usefull options widthliketwocolumns, series={}, noeledsec
% reledmac configuration
\renewcommand{\ledlsnotefontsetup}{\scriptsize\sffamily}%
\renewcommand{\ledrsnotefontsetup}{\scriptsize\sffamily}%
\sidenotemargin{outer}
\usepackage[]{reledpar}
% reledpar configuration
\setlength{\columnrulewidth}{0.4pt}
% Dummy text
\usepackage{blindtext}
\begin{document}
\chapter{Introduction}
\blindtext
\begin{pairs}
\begin{Leftside}
\beginnumbering
\pstart[\section{Testsection A}]
\blindtext
\ledleftnote{Side note on the \textbf{left}}
\blindtext
\pend
\pstart[\section{Testsection B}]
\blindtext
\pend
\endnumbering
\end{Leftside}
%
\begin{Rightside}
\beginnumbering
\pstart[\section{Testsection A}]
\blindtext
\pend
\pstart[\section{Testsection B}]
\blindtext
\ledrightnote{Side note on the \textbf{right}}
\blindtext
\pend
\endnumbering
\end{Rightside}
\end{pairs}
\Columns
\end{document}
命令 \ledlsnotefontsetup
(左)和\ledrsnotefontsetup
(右)有助于设置包含命令\ledleftnote
和的侧注\ledrightnote
。
就我而言,我使用
\renewcommand{\ledlsnotefontsetup}{\scriptsize\sffamily}
\renewcommand{\ledrsnotefontsetup}{\scriptsize\sffamily}
问题:我想颜色\color
使用包中的命令也可以复制文本xcolor
。但是
\renewcommand{\ledlsnotefontsetup}{\scriptsize\sffamily\color{red}}
\renewcommand{\ledrsnotefontsetup}{\scriptsize\sffamily\color{blue}}
没有效果。
答案1
这是 reledmac 的一个错误。将于 2016/05/08 在 CTAN 上发布的 reledmac 2.9.0 版本将解决此问题。目前,您可以在https://github.com/maieul/ledmac/archive/mac2.10.0-par2.9.0.zip。