> \newcommand{\mynewparameter}{200}
> \newcommand{\additionalnewparameter}{$\sqexpr{1.4*\mynewparameter}$}
> $\sqexpr{1.4*\additionalnewparameter}$! Then I get the ??sysquake??-
You can't use (La)TeX variables in Sysquake code. Sysquake code is a
verbatim block of text for LaTeX. But you can define Sysquake
variables at the beginning and use them in other blocks of code:
\begin{sysquake}
mynewparameter = 200;
additionalnewparameter = 1.4 * mynewparameter;
\end{sysquake}
...
$\sqexpr{1.4*additionalnewparameter}$
Hope this helps,
Yves
When I wrote "at the beginning", I meant before the variables are
used. You can split Sysquake code into as many \begin{sysquake}...\end
{sysquake} blocks as you want and put them wherever you want in the
LaTeX file(s). Sysquake code is interpreted in the same order as the
blocks where it is placed. So I don't see any difference with LaTeX
variables with that respect. LaTeX variables and Sysquake variables
have other differences, of course.
Best regards,
Yves