On Sun, 11 Sep 2011, Wolfgang Schuster wrote: > > Am 11.09.2011 um 16:49 schrieb Aditya Mahajan: > >> On Sun, 11 Sep 2011, Wolfgang Schuster wrote: >> >>> >>> Am 10.09.2011 um 18:20 schrieb Aditya Mahajan: >>> >>>> If one is also interested in a usable XML export, then some \starttag..\stoptag must be added to the setups. >>> >>> How about this: http://d.pr/o7Xz >> >> Thanks, that is very nice. >> >> Can you make the alignment and the \blanks configurable, perhaps using spacebefore and space after? > > I can but when you need customization write your own style. OK. Do you plan to release this on contextgarden? This will simplify the title page setup of the simple-slides module. I think that others might find it useful as well. If you don't want to go through the hassle, I can maintain it. >> Is there an easy way to add multiple authors. Sometimes you need to add authors and their affiliation and I don't know what is a good key-value driven way to add them. > > The ConTeXt way would be “author={Author One,Author Two,…}” but with MkIV you can use Lua to provide a alternative key-val-interface: > > \startplacetitle > title = "…", > author = { > "First author", > "Second author", > "…", > } , > date = "\\curentdate" > \stopplacetitle Sorry, I should have explained in more detail. Suppose I want to indicate that there are two authors, "first author" and "second author". First author is at "institute 1" and second author is at institute 2. I want authors and institutes to be set in different styles. There are a couple of ways of setting this up: \setuptitle [ authors={ {name={First author}, institute={insitute 1}}, {name={Second author}, institute={insitute 2}} }, ... ] or \setuptitle [author1] [name={First author}, insititute={institute 1}] \setuptitle [author2] [name={Second author}, institute={institute 2}] \setuptitle [authors={author1, author2}] or \setuptitle [authors={First author, second author}, institutes={institute 1, institute 2}] To me, none of these look satisfatory, so I am wondering if there is a better solution. Thanks, Aditya