Hello, 1) I use \setupindenting[yes, big]. How to make the first paragraph (after the section title) to be indented too? 2) I made a command for abstracts (a few lines in the beginning of the paper, one paragraph only). Please, look at my definition, i'd like to know how to implement it in more elegant, ConTeXt way. \define[1]\Abstract{ \startalignment[middle] \switchtobodyfont[11pt] {\it #1} \stopalignment \blank[big]} Example usage: \Abstract{Присвячено практичному застосуванню алгоритмів параметричної ідентифікації для визначення параметрів технологічного процесу гідроструйного різання} Best regards, Vyatcheslav
Vyatcheslav Yatskovsky wrote:
Hello,
1) I use \setupindenting[yes, big]. How to make the first paragraph (after the section title) to be indented too?
\setuphead[section][indentnext=yes]
2) I made a command for abstracts (a few lines in the beginning of the paper, one paragraph only). Please, look at my definition, i'd like to know how to implement it in more elegant, ConTeXt way.
\startsetups abstract:before \startalignment[middle] \switchtobodyfont[11pt] \bgroup\it \stopsetups \startsetups abstract:after \egroup \stopalignment \blank[big] \stopsetups \definestartstop [Abstract] [before=\directsetup{abstract:before}, after=\directsetup{abstract:after}] \startAbstract ... \stopAbstract Best wishes, Taco
participants (2)
-
Taco Hoekwater
-
Vyatcheslav Yatskovsky