Comprobando el asunto principal

Comprobando el asunto principal

Necesito verificar dónde está el texto (del paquete .sty), si está en la sección principal, luego incluir algunos encabezados \pagestyle{LL}, si es el otro, \pagestyle{plain}o algún otro. Construcción \ifx\@mainmattertrue\pagestyle{LL}\else\pagestyle{plain}\fien:

    \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

no funciona en

\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 qué?

Respuesta1

La bookclase define el \if@mainmattercondicional. Entonces

\if@mainmatter
   <we are in the main matter>
\else
   <we aren't in the main matter>
\fi

es el esquema para el código que necesita. Por ejemplo

\def\@LLview{%
  \if@mainmatter
    \pagestyle{LL}%
  \else
    \pagestyle{plain}%
 \fi
}

Este estilo de sangría no es obligatorio, pero lo encuentro conveniente. Con tu estilo podría ser

\def\@LLview{%
    \if@mainmatter\pagestyle{LL}\else\pagestyle{plain}\fi
    }

( %al final de la primera líneaesnecesario).

Tenga en cuenta que \if@mainmatterinicialmente se establece en verdadero. Los comandos lo \frontmatterconfiguran \backmattercomo falso, mientras que \mainmatterlo restablece como verdadero.

El \@mainmattertruecomando se usa para configurar el condicional para que devuelva verdadero, y existe un comando similar \@mainmatterfalse.

información relacionada