Command/continueifinputfile

From Wiki
< Command
Revision as of 08:34, 23 May 2012 by Esteis (talk | contribs) (Create page, with all everything in it.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

\continueifinputfile

Syntax

\continueifinputfile{...}
{...} filename

Description

  • If this file is being processed because it was included in another file, stop.
  • If ConTeXt was invoked on this file specifically, continue.
  • Commonly used to place a test/example section at the end of a module file.

Example

% We write a module, and put it in mymodule.mkiv

%D This module provides the wonderfully useful \mycommand

\define\mycommand#1%
    {\tex{mycommand} turns your \quote{#1} into something useful.}

% Everything above was part of the module definitions. 
% Everything below is part of the documentation PDF, 
% which we only produce if the user runs ConTeXt on this 
% file specifically.

\continueifinputfile{mymodule.mkiv}

\starttext
    \section{Examples of using \tex{mycommand}}
        % ....
    \section{On the implementation of \tex{mycommand}}
        % ....
    \section{Credits}
\stoptext

See Also

  • \jobname simply expands to the name (sans extension) of the file ConTeXt was invoked on.