% - Tex Command



%

NAME

% - indicates comments in the source.

SYNOPSIS

{ \def<definition>#1 }

DESCRIPTION

% indicates comments in the source code. Not rendered in final output.

EXAMPLES

  1. % Note: (x+1)^2 is NOT x^2 + 1 will not get printed

    % Note: (x+1)^2 is NOT x^2 + 1
    (x+1)^2      % original expression
    = (x+1)(x+1) % definition of exponent
    = x^2 + 2x + 1 % FOIL, combine like terms
    
    $ % Note: (x+1)^2 is NOT x^2 + 1 (x+1)^2 % original expression = (x+1)(x+1) % definition of exponent = x^2 + 2x + 1 % FOIL, combine like terms $
Advertisements