回忆录课-修改`ell`章节样式

回忆录课-修改`ell`章节样式

在回忆录类中,我如何修改章节样式的格式ell。手册中未列出代码(与其他样式不同)。

屏幕转储

基本上,在上面我想要做的就是使水平和垂直线稍微粗一些并且采用不同的颜色。

我已经查看过回忆录包的源代码,但找不到这种特定章节风格的代码在哪里。

答案1

这就是我最终修改它的方式,\chs@ell@helper命令需要重新定义:

%Modify the fancy chapter lines.
\makeatletter
    \usepackage{array}
    \newcolumntype{?}{!{\verticalrule}}
    \renewcommand\chs@ell@helper[1]{%
      \par%
        \begin{adjustwidth}{}{-\chapindent}
          \begin{tabularx}{\linewidth}{>{\raggedleft\arraybackslash}X?}%|emacs
            \leavevmode\chapnumfont #1\vphantom{1}%
            \hspace*{3.6pt}%
            \color{blue!50!black}\rule[-13.5pt]{0pt}{14.8mm}%
            \\%
            \midrule %\hline%
          \end{tabularx}%
        \end{adjustwidth}%
        \par%
      }%
\makeatother

相关内容