Difference between revisions of "Command/define"

From Wiki
Jump to navigation Jump to search
(Create reference page)
 
Line 1: Line 1:
<!-- please remove this and the following line if you have checked this page -->
 
{{Reference_Cleanup}}
 
 
{{Reference
 
{{Reference
 
|name=define
 
|name=define

Revision as of 15:49, 11 April 2010

\define

Syntax

\define[...]\command{...}
[...] number
{...} text


Description

\define is like the TeX primitive \def: it defines a new TeX macro. Unlike 
\def, it will not allow you to redefine an already defined command.

The optional (bracketed) argument denotes the number of parameters you can give 
to your command. text is the result when the macro gets expanded. \define is
not \long, that means you cannot use \par inside the arguments.

comment

is there any bonus when I use \define instead of \def? -PG


Example

\define[1]\hello{Good morning, #1}

\starttext
\hello{mom} % Good morning mom
\stoptext


See also