% - Comando Tex

%

NOMBRE

% - indica comentarios en la fuente.

SINOPSIS

{ \def<definition>#1 }

DESCRIPCIÓN

% indica comentarios en el código fuente. No renderizado en la salida final.

EJEMPLOS

  1. % Nota: (x + 1) ^ 2 NO es x ^ 2 + 1 no se imprimirá

    % 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
    $% Nota: (x + 1) ^ 2 NO es x ^ 2 + 1 (x + 1) ^ 2% expresión original = (x + 1) (x + 1)% definición de exponente = x ^ 2 + 2x + 1% FOIL, combinar términos similares $
Impresión