检查主要内容

检查主要内容

我需要检查文本(来自包 .sty)的位置,如果它在 mainmatter 部分,则包含一些标题\pagestyle{LL},如果是其他的,则\pagestyle{plain}包含其他内容。构造\ifx\@mainmattertrue\pagestyle{LL}\else\pagestyle{plain}\fi

    \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

不适用

\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}

为什么?

答案1

book定义了\if@mainmatter条件。所以

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

是您需要的代码的方案。例如

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

这种缩进样式不是强制性的,但我觉得很方便。按照你的样式,可以

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

%第一行末尾的需要)。

请注意,\if@mainmatter最初设置为 true。命令\frontmatter\backmatter将其设置为 false,而\mainmatter命令将其重置为 true。

命令\@mainmattertrue用于设置条件返回真,还有类似的\@mainmatterfalse

相关内容