Am 06.12.2010 um 13:46 schrieb Nicola:
Hi, I have a set of specifications for a document and I am having some problems implementing it. I am using MKIV from TeX Live 2010. I have some difficulty with these requirements in particular:
1) title: 17pt, boldface, capital letters; 12pt spacing before and 3pt spacing after the title;
Now I use
\setuphead[title][align=middle,style={\bfd\cap},before={},after={}]
How can I ensure that the font size is exactly 17pt? How to I specify precise vertical spacing?
\definefont[TitleStyle][SerifBold at 17pt] \setuphead [title] [style=TitleStyle, textstyle=WORD, before={\blank[12pt]}, after={\blank[3pt]}, align=middle]
3) All § must be indented 1.25cm;
\setupindenting[1.25cm,yes,first]
But the first § of each Section is not indented.
\setuphead [section] [indentnext=yes]
4) footnote symbol: *
I use
\setupnote[footnote][numberconversion=set 3]
but I get stars instead of asterisks.
How about „set 1“ or „set 2“? If none of them fits you can create your own conversionset with \defineconversion[nicola][*,**,***,****,*****,...] \setupnote[footnote][numberconversion=nicola] Wolfgang