장 제목을 두 줄로 나누는 Sesamanuel 패키지 문제가 있습니까?

장 제목을 두 줄로 나누는 Sesamanuel 패키지 문제가 있습니까?

예상되는 결과는 다음과 같습니다.

세사맛에서 발췌

이것은 지금까지의 내 작업이며 새 라인으로 이동하기 위해 두 개의 백래시를 넣을 때 문제가 발생했습니다. 컴파일을 위해 XelaTeX를 사용하세요...

\documentclass[nocrop]{sesamanuel}

\let\ifluatex\relax
\usepackage{hyperref}

\begin{document}

\NewThema{A}{a}{analyse}{Analyse}{ANALYSE}{PartieFonction}{A3}

\themaA
\colorlet{ChapterNumSquare1Color}{PartieFonction}
\chapter{Fonctions\\Numériques}
\cours



my first chapter goes here... chapter  goes here...




\themaG
\colorlet{ChapterNumSquare1Color}{PartieGeometrie}
\chapter{Nombres\\Complexes}
\cours

my second chapter goes here...

\NewThema{PS}{ps}{probabilités statistiques}{Probabilités Statistiques}{PROBABILITES \\ STATISTIQUES}{PartieStatistique}{U1}
\themaPS

\colorlet{ChapterNumSquare1Color}{PartieStatistique}
\chapter{Probabilités\\Statistiques}
\cours

my third chapter ....


\end{document}

컴파일한 후의 결과는 다음과 같습니다.

내 결과

답변1

\NewThema라인 브레이크를 잘 처리하지 못하는 것이 문제인 것 같습니다 . 해결 방법으로 \newcommand*\themaPS{...}새 ​​테마를 정의하는 데 사용할 수 있습니다 .

% !TEX TS-program = xelatex
\documentclass[nocrop]{sesamanuel}

\let\ifluatex\relax
\usepackage{hyperref}

\makeatletter
\newcommand*\themaPS{%
  \cleardoubleoddpage
  \def\smc@thema{probabilités statistiques}%
  \def\smc@themacap{PROBABILIT\'ES\\ STATISTIQUES}%
  \def\smc@thema@init{ps}%
  \def\smc@thema@initcap{PS}%
  \smc@themaSColor
}
\makeatother

\begin{document}

\themaPS
\chapter{Partie Statistique}

my first chapter goes here... chapter  goes here...

\end{document}

여기에 이미지 설명을 입력하세요

관련 정보