Re: new indentation in context
Adam Duck <[email protected]> Sat, 12 Mar 2005 00:15:15 +0100
| Newsgroups | gmane.emacs.auc-tex |
|---|---|
| Message-ID | <[email protected]> |
Ralf Angeli <[email protected]> writes: > Well, that's actually a feature. According to code I didn't change > with the last check-in, \setup... commands should be treated like > \item commands. Well, that's nice for \item because you now they end after \stopitemize, so you can easily indent correctly. However, for \setup*-commands, this is not true. > What are \setup... commands for and how are they used? (I tried to > download that 2.4MB monster of a ConTeXt manual from pragma-ade.nl, > but this is not really fun via a 56k connection, especially if the > modem hangs up after one MB.) I'm sorry to hear that, so ... If you have something like this: \startitemize[n] \item hello \item test \stopitemize you can setup this itemization with \setupitemize[1][packed][symbol=a] this means itemization at level 1 should be tightly packed and the "bullets" should be "a", "b", and so on (which, in this example would be superseded by the "n" and therefore become "1", "2", and so on). It's more like \renewcommand in LaTeX and therefore the next lines should not be indented like \items but differently, because you can write code like this: \setupitemize[1][packed] [symbol=a] Btw, I managed to pinpoint my problems with `transient-mark-mode'. It seemed to be my call to "(icomplete-mode)" in my init-files. Which is strange, but it works now. Actually, I even don't know what it's for because I do have iswitchb, which is all I want. bye, Adam.