Browse Source

Ajout d'une option 'nocustomtitle' pour désactiver la modification de la page de titre

pull/32/head
Louis 11 years ago
parent
commit
ca9ffe3347
  1. 9
      songbook_core/data/latex/crepbook.sty

9
songbook_core/data/latex/crepbook.sty

@ -12,6 +12,11 @@
\newif{\iffancycapo}
\DeclareOption{fancy-capo}{\fancycapotrue}
% nocustomtitle: Disable title page fancy definition (back to LaTeX default)
\newif{\ifcustomtitle}
\customtitletrue
\DeclareOption{nocustomtitle}{\customtitlefalse}
% Remaining options are passed to the SongbookUtils package
\DeclareOption*{\PassOptionsToPackage{\CurrentOption}{SongbookUtils}}
@ -90,16 +95,19 @@
\clearheadinfo
\ifcustomtitle
\def\maketitle{
\@maketitle
\clearheadinfo
}
\fi
\newcounter{@inst}
\newcounter{@auth}
\newcounter{auco}
\ifcustomtitle
\def\@titlefont{\Huge\bfseries\boldmath}
\def\@subtitlefont{\large\bfseries\boldmath}
@ -147,6 +155,7 @@
\end{flushright}
\end{titlepage}
}
\fi
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

Loading…
Cancel
Save