Tagged Questions
2
votes
1answer
122 views
How to create counters that display and increment dates in ConTeXt?
I need to create a document that has section titles named "October 1, 2012", "October 2, 2012", etc., like this:
\section{October 1, 2012}
This is text for the first day.
\section{October 2, ...
2
votes
1answer
84 views
Where to find a list of all system-defined counters in ConTeXt?
I learned from How to obtain the current page number in ConTeXt? that I can obtain the page number counter value using tex.count.pageno, but I have not found this mentioned in any available ...
2
votes
1answer
176 views
How to compare two counters using TeX conditionals in ConTeXt?
I have two counters, \definenumber[words] and \definenumber[items]. I have tried to use TeX conditionals to compare them, e.g.:
\ifnum\getnumber[words]=\getnumber[items]
This will print some text ...