Preciso verificar onde está o texto (do pacote .sty), se está na seção mainmatter, então incluir alguns headers \pagestyle{LL}
, se for outro então \pagestyle{plain}
ou algum outro. Construção \ifx\@mainmattertrue\pagestyle{LL}\else\pagestyle{plain}\fi
em:
\NeedsTeXFormat{LaTeX2e}[1994/06/01]
\ProvidesPackage{New}[2014/12/12]
\DeclareOption{LL}{\AtEndOfPackage{\llstyle}}
\ProcessOptions\relax
\RequirePackage{textcase}
\def\ps@LL{
%------------------Колонтитули---------------------
%------------------Верхні--------------------------
\renewcommand{\@evenhead}%
{\raisebox{0pt}[\headheight][0pt]{% начало блока
\vbox{\hbox to\textwidth{\strut
\small{\thepage\hfil\MakeUppercase{BlaBla}\hfil{GL}. \thechapter}}\hrule}}% конец блока
}% конец макроопределения
\renewcommand{\@oddhead}%
{\raisebox{0pt}[\headheight][0pt]{% начало блока
\vbox{\hbox to\textwidth{\strut
\small{{\S\hspace{1ex}}\thesection\hfil\MakeUppercase{Bla1}\hfil\thepage}}\hrule}}% конец блока
}% конец макроопределения
}
\def\@LLview{
\ifx\@mainmattertrue\pagestyle{LL}\else\pagestyle{plain}\fi
}
\def\llstyle
{
\@ifclassloaded{book}{\@LLview}{}
\@ifclassloaded{extbook}{\@LLview}{}
}
\endinput
não funciona em
\documentclass[12pt,twoside]{book}
\usepackage[cp1251]{inputenc}
\usepackage[english]{babel}
\usepackage[LL]{New}
\usepackage{lipsum}
\begin{document}
\frontmatter
\chapter{Intro}
\lipsum[1-6]
\mainmatter
\chapter{One}
\lipsum[1-10]
\end{document}
Por que?
Responder1
A book
classe define o \if@mainmatter
condicional. Então
\if@mainmatter
<we are in the main matter>
\else
<we aren't in the main matter>
\fi
é o esquema para o código que você precisa. Por exemplo
\def\@LLview{%
\if@mainmatter
\pagestyle{LL}%
\else
\pagestyle{plain}%
\fi
}
Esse estilo de recuo não é obrigatório, mas acho conveniente. Com o seu estilo poderia ser
\def\@LLview{%
\if@mainmatter\pagestyle{LL}\else\pagestyle{plain}\fi
}
(o %
no final da primeira linhaénecessário).
Observe que \if@mainmatter
inicialmente está definido como verdadeiro. Os comandos \frontmatter
definem \backmatter
-no como falso, enquanto \mainmatter
o redefinem como verdadeiro.
O \@mainmattertrue
comando é usado para definir a condicional para retornar verdadeiro, e existe o semelhante \@mainmatterfalse
.