在 scrrprt 类中使用 optiontohead 时出现问题

在 scrrprt 类中使用 optiontohead 时出现问题

我正在使用claasicthesisversionv4.1scrreprtversion v3.11b。我试图强制打印目录中章节标题的较长版本,但目前尚未成功。

我使用了以下选项scrreprt

\documentclass[ 
            openright,
            titlepage, numbers=noenddot, headinclude,
            footinclude=true, cleardoublepage=empty,
            BCOR=30mm, paper=letter, fontsize=11pt, 
            dottedtoc, 
            ngerman, american, 
            headings=optiontohead,
            ]{scrreprt} 

以及以下内容classicthesis

\PassOptionsToPackage{%
                eulerchapternumbers,
                listings,
                pdfspacing,
                subfig,
                beramono,                  
                parts}{classicthesis}

手册中提到:

\section[short version ]{heading }

使用选项时headings=optiontohead,KOMA-Script 不会在目录中使用可选参数短版本,而仅用于运行头。

不幸的是,出于某种原因,即使使用了 ,目录仍然使用标题的短版本headings=optiontohead。有人能告诉我如何强制scrreprt在目录中使用章节标题的长版本吗?

答案1

我回答了类似的问题GuIT 论坛上的问题

问题相当复杂。由于classicthesis使用了,所以用于决定在标题或目录中包含什么内容的titlesec方法不起作用。scrbookheadings=optiontohead

我担心唯一的办法就是说

\stepcounter{section}
\sectionmark{Azione collettiva o scelta individuale}
\addtocounter{section}{-1}
\section{La ristrutturazione: un problema di azione collettiva
  o una razionale scelta individuale?}
\sectionmark{Azione collettiva o scelta individuale}

最好避免使用长标题。

相关内容