< TeX
Synopsis
\endinput
Description
- This command terminates the input process in the middle of a file. It is redundant at the end of a file.
- On encountering this command, TeX continues reading until the end of the line. This makes it possible to wrap
\endinputin an\ifoneliner.
Example
\def\false{false}
\def\students{false}
% Questions, for teachers and students ...
\ifx\students\true\endinput\fi
% Answers, for teacher only
If the \if statement cannot be a oneliner (for legibility reasons, say), then one can use \expandafter:
\ifx\students\true
% ... various other statements ...
\expandafter\endinput
\fi
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.