I have defined the following macro: \def\Qur[#1][#2][#3][#4]{\placeongrid{\blank[4pt]\testpage[4] \setupindenting[no] \startalignment[right]\setupalign[r2l]\setupinterlinespace[line=3.7ex]\amiri #1 \stopalignment \blank[4pt] {\bf #2} \wordright{\tfx (Heiliger Qur'an #3:#4)} \blank[3pt]} } How can I setup, that paragraphs after this above block will not be indented? Thanks! Huseyin
Am 24.07.2013 um 12:23 schrieb H. Özoguz
I have defined the following macro:
\def\Qur[#1][#2][#3][#4]{\placeongrid{\blank[4pt]\testpage[4] \setupindenting[no] \startalignment[right]\setupalign[r2l]\setupinterlinespace[line=3.7ex]\amiri #1 \stopalignment \blank[4pt] {\bf #2} \wordright{\tfx (Heiliger Qur'an #3:#4)} \blank[3pt]} }
How can I setup, that paragraphs after this above block will not be indented?
You can add \noindentation at the end of your code. You can also use the annotation environment to create a new command for your text where you can set text with keys. \usemodule[annotation] \defineannotation [Qur] [alternative=Qur, spacebefore=3pt, paragraph=yes, align=r2l, %before={\testpage[4]}, indentnext=no, %style=amari, interlinespace=3.7ex] \defineannotationalternative[Qur][renderingsetup=annotation:Qur,alternative=vertical] \startsetups[annotation:Qur] \currentannotationcontent \blank[4pt] {\bf\annotationparameter{one}}\wordright{\tfx (Heiliger Qur'an \annotationparameter{two}:\annotationparameter{three})} \stopsetups \setupindenting[yes,medium] \starttext \input knuth \startQur[one=A,two=B,three=C] \input knuth \stopQur \input knuth \stoptext Wolfgang
participants (2)
-
"H. Özoguz"
-
Wolfgang Schuster