calculating with dimension unit
In a book I produced with ConTeXt last year, I did a lot of calculation to be able to change the layout dynamicaly. With the actual version of ConTeXt I can't compile the book. I have tried a lot of things today ... without success. I hope my minimal-example helps you to understand, what I want to do - and what I am doing wrong: \starttext \setupexternalfigures[location={local,global,default}] \defineexpandable\ColumnA {30mm} \defineexpandable\ColumnB {40mm} \defineexpandable\ColumnABi {\dimexpr(\ColumnA + \ColumnB)} \defineexpandable\ColumnABii {\ctxlua{context(\ColumnA + \ColumnB)}} \newdimen\ColumnABiii \ColumnABiii = \dimexpr(\ColumnA + \ColumnB) A \ColumnA% ok B \ColumnB% ok % I sadly get only errors when I delete the comments: %ColumnABi: \ColumnABi %ColumnABii: \ColumnABii %ColumnABiii: \ColumnABiii %\externalfigure[cow][width=\ColumnABiii] ~ \page \stoptext
\starttext \setupexternalfigures[location={local,global,default}] \defineexpandable\ColumnA {30mm} \defineexpandable\ColumnB {40mm} \defineexpandable\ColumnABi {\the\dimexpr(\ColumnA + \ColumnB)} \defineexpandable\ColumnABii {\ctxlua{context([==[\ColumnA + \ColumnB]==])}} \newdimen\ColumnABiii \ColumnABiii=\dimexpr(\ColumnA + \ColumnB) A \ColumnA% ok B \ColumnB% ok ColumnABi: \ColumnABi ColumnABii: \ColumnABii ColumnABiii: \the\ColumnABiii \externalfigure[cow][width=\ColumnABiii] ~ \page \stoptext
Am 22.04.2013 um 01:13 schrieb Jan Heinen
In a book I produced with ConTeXt last year, I did a lot of calculation to be able to change the layout dynamicaly.
With the actual version of ConTeXt I can't compile the book. I have tried a lot of things today ... without success. I hope my minimal-example helps you to understand, what I want to do - and what I am doing wrong:
\starttext \setupexternalfigures[location={local,global,default}]
\defineexpandable\ColumnA {30mm} \defineexpandable\ColumnB {40mm} \defineexpandable\ColumnABi {\dimexpr(\ColumnA + \ColumnB)} \defineexpandable\ColumnABii {\ctxlua{context(\ColumnA + \ColumnB)}} \newdimen\ColumnABiii \ColumnABiii = \dimexpr(\ColumnA + \ColumnB)
\definemeasure[ColumnA][30mm] \definemeasure[ColumnB][40mm] \definemeasure[ColumnBi][\the\dimexpr(\measure{ColumnA}+\measure{ColumnB})]
A \ColumnA% ok
B \ColumnB% ok
% I sadly get only errors when I delete the comments: %ColumnABi: \ColumnABi
A \measure{ColumnA} B \measure{ColumnB} C \measure{ColumnBi} Wolfgang
On 4/22/2013 8:48 AM, Wolfgang Schuster wrote:
Am 22.04.2013 um 01:13 schrieb Jan Heinen
: In a book I produced with ConTeXt last year, I did a lot of calculation to be able to change the layout dynamicaly.
With the actual version of ConTeXt I can't compile the book. I have tried a lot of things today ... without success. I hope my minimal-example helps you to understand, what I want to do - and what I am doing wrong:
\starttext \setupexternalfigures[location={local,global,default}]
\defineexpandable\ColumnA {30mm} \defineexpandable\ColumnB {40mm} \defineexpandable\ColumnABi {\dimexpr(\ColumnA + \ColumnB)} \defineexpandable\ColumnABii {\ctxlua{context(\ColumnA + \ColumnB)}} \newdimen\ColumnABiii \ColumnABiii = \dimexpr(\ColumnA + \ColumnB)
\definemeasure[ColumnA][30mm] \definemeasure[ColumnB][40mm] \definemeasure[ColumnBi][\the\dimexpr(\measure{ColumnA}+\measure{ColumnB})]
FYI: \the\dimexpr... will look ahead till there's something nonexpandable, and contrary to what one expects \dimexpr(...) will not stop at the ) so, although with measures it normally goes okay, personally I always use \relax as terminator; the \relax will be eaten up so there is no interference but it guarantees to stop scanning. (I've been wondering if we should make measured \the\dimexpr..\relax internally which can save dimexpr at the user end.)
A \ColumnA% ok
B \ColumnB% ok
% I sadly get only errors when I delete the comments: %ColumnABi: \ColumnABi
A \measure{ColumnA}
B \measure{ColumnB}
C \measure{ColumnBi}
Wolfgang ___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context webpage : http://www.pragma-ade.nl / http://tex.aanhet.net archive : http://foundry.supelec.fr/projects/contextrev/ wiki : http://contextgarden.net ___________________________________________________________________________________
-- ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com | www.pragma-pod.nl -----------------------------------------------------------------
Am 22.04.2013 um 10:14 schrieb Hans Hagen
On 4/22/2013 8:48 AM, Wolfgang Schuster wrote:
Am 22.04.2013 um 01:13 schrieb Jan Heinen
: In a book I produced with ConTeXt last year, I did a lot of calculation to be able to change the layout dynamicaly.
With the actual version of ConTeXt I can't compile the book. I have tried a lot of things today ... without success. I hope my minimal-example helps you to understand, what I want to do - and what I am doing wrong:
\starttext \setupexternalfigures[location={local,global,default}]
\defineexpandable\ColumnA {30mm} \defineexpandable\ColumnB {40mm} \defineexpandable\ColumnABi {\dimexpr(\ColumnA + \ColumnB)} \defineexpandable\ColumnABii {\ctxlua{context(\ColumnA + \ColumnB)}} \newdimen\ColumnABiii \ColumnABiii = \dimexpr(\ColumnA + \ColumnB)
\definemeasure[ColumnA][30mm] \definemeasure[ColumnB][40mm] \definemeasure[ColumnBi][\the\dimexpr(\measure{ColumnA}+\measure{ColumnB})]
FYI: \the\dimexpr... will look ahead till there's something nonexpandable, and contrary to what one expects
\dimexpr(...)
will not stop at the ) so, although with measures it normally goes okay, personally I always use \relax as terminator; the \relax will be eaten up so there is no interference but it guarantees to stop scanning.
AFAIR the etex already mentions it.
(I've been wondering if we should make measured \the\dimexpr..\relax internally which can save dimexpr at the user end.)
+1 Wolfgang
On 4/22/2013 1:13 AM, Jan Heinen wrote:
%\externalfigure[cow][width=\ColumnABiii]
Already for quite a while some commands that take a dimension as well as a keyword need a verbose dimension (so \the\ColumnABiii in your case) because it's handled at the lua end (where at this moment we cannot deal with it otherwise). Hans ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com | www.pragma-pod.nl -----------------------------------------------------------------
participants (5)
-
Aditya Mahajan
-
Hans Hagen
-
Jan Heinen
-
luigi scarso
-
Wolfgang Schuster