I've got a problem with Pascal triangle example at Paul Gaborit's solution.
When I compile it with one of my personal class file, it compiles OK. But when I compile it with another class, using the same options for tikz libraries, I get an error on the line
\global\let\value=\value
The triangle is produced, as well as the rest of the document, but I get an error message :
./cours_denombrement.tex:810: Missing = inserted for \ifnum.
{
l.810 \end{document}
./cours_denombrement.tex:810: Missing number, treated as zero.
<to be read again>
{
l.810 \end{document}
I think it has something to do with the interaction with another package, so I'm gonna investigate on my class file, but maybe someone has an idea about what is going on ?
Thanks for any help.
\bye
pdflatex. Which compiler do you use? Does replacing that line by\xdef\value{\value}help? – Nov 17 '18 at 16:28\valuein this code is just a placeholder, you could replace all\values by\myvalue, then. (It is arguably even a bit unfortunate that\valueis used here as this is a standard command that can be used to e.g. get the value of a counter, so\myvalueis probably even cleaner.) – Nov 17 '18 at 17:26\valuegets replaced by something less dangerous. What do you think? – Nov 17 '18 at 18:10