TeX e como não exibir o rodapé/título em uma página específica

TeX e como não exibir o rodapé/título em uma página específica

A página de título, qualquer página, sem cabeçalho/rodapé usando plain+etex+opmac, por página.

Existe uma solução de codificação manual para uma macro de página para relaxar o rodapé/título da página. Abaixo da "ideia" aparentemente não está a solução.

\tit Title % Some title command in plain tex

\def\nofootline{\footline{}} % would show an "empty" footline

\nofootline % the \nofootline is applied

\vfill\break % this would end the page

\let\nofootline{\relax} % no longer have the \nofootline having any effect

E a página at hoc teria um rodapé conforme definido originalmente.

Responder1

Talvez você esteja encontrando uma macro como \onlythispage:

\def\onlythispage#1=#2{%
   \expandafter\xdef\csname saved\string#1\endcsname{\the#1}%
   \global#1={#2\global#1=\expandafter\expandafter\expandafter
                           {\csname saved\string#1\endcsname}}
}
\def\nofootline{\onlythispage\footline={}} % would show an "empty" footline

\nofootline % the \nofootline is applied

Text, empty footline is here.

\vfill\break % this would end the page

Text, the original footline is here.

\end

informação relacionada