This operator can be found in different places :
If \scale is written inside a step block, the scaling factor defined by this operator is only applied for the current step. In the other case, if it is specified between two step blocks, the scaling factor becomes global, it is applied on all next steps. Local scaling operator is always prioritary, if a global scaling factor has been defined before the current step, the local scaling factor is applied for this step as if any global scaling operator was found, but the global value is restored for next steps. The caling factor is an absolute value. Thus, at any moment if we want to restore the default size for next steps, the 100 value can be used in a global operator.
\step { .... \scale(50); % make this step be drawn twice smaller than normal ones .... } \scale(200); % next steps will displayed twice taller than default \step { .... % this step is taller } \step { .... \scale(100); % make this only step be drawn as default .... }
\scale(FACTOR);
FACTOR Description : Indicates the percentage according to default size. Type : Integer. Allowed values : Any positive integer value except zero.