Re: [NTG-context] Hanging indent in startstoplines for poems

2010-03-31 Thread Wolfgang Schuster

Am 30.03.10 23:34, schrieb Torsten Suhling:

Hello,

thanks for the help, attached snippet seems to work.

So I guess my question basicly was caused by misunderstandings
in using define/setup commands.

Is there a document describing the grammar of context---how to
use or to combine \setupsomething, \definesomething
ttartstosomethig or \setupanything{something=[]}?

Just combine them in the way you need it in your document.

http://pragma-ade.com/show-man-10.htm

 Wolfgang Schuster wrote:

 % style={\setupalign[flushleft,nothyphenated]},
 style={\raggedright\nohyphens},

Sorry for stupid question, but is there a difference
between \nohyphens and \nothyphenated ?

The second line are the commands which are used when your write
\setupalign[flushleft,nothyphenated] but when I wrote my mail
it wasn't possible to use \setupalign with the style key
(works now but i guess only in mkiv).

Wolfgang

___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Hanging indent in startstoplines for poems

2010-03-30 Thread Torsten Suhling

Hello,

thanks for the help, attached snippet seems to work.

So I guess my question basicly was caused by misunderstandings
in using define/setup commands.

Is there a document describing the grammar of context---how to
use or to combine \setupsomething, \definesomething
ttartstosomethig or \setupanything{something=[]}?

 Wolfgang Schuster wrote:

 % style={\setupalign[flushleft,nothyphenated]},
 style={\raggedright\nohyphens},

Sorry for stupid question, but is there a difference
between \nohyphens and \nothyphenated ?


Thanks

Torsten

%- snip --

\setupoutput[dvi]

\setupwhitespace[1.2em]

\definestartstop[verse]
 [command={%
   \setupwhitespace[1.2em]%   
  },style={%

   \raggedright\nohyphens%
 },before={%
   \setuplines[indenting={yes,-2em,first}]%
   \setupnarrower[left=2em]%
   \startnarrower[left]% blockindent only left
   \startlines%
  },after={%
   \stoplines%
   \stopnarrower%
   \setuplines[indenting={no}]% must be reseted
   \endgraf%
 }]

\starttext

Three lines, first should be broken:

\startverse
FIRST---this should be one line, please remove linebreaks, made by the 
mail programms, until HERE.

SECOND---next line without carriage return or line feed,
THIRD---startstoplines accept linebreaks, so this is a new line.
FOURTH---fourth line also do not make much words.
\stopverse

\stoptext

%- snip --














___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Hanging indent in startstoplines for poems

2010-03-29 Thread Wolfgang Schuster

Am 29.03.10 17:29, schrieb Torsten Suhling:


Hello,

I have a question regarding hanging indentation in
startstoplines-environment.

So I try to use ConTeXt to typeset poems. In some texts/poems
ar long lines, which have to be broken. They should be broken
into hanging indentations.

Any idea how to do that?

\definelines
  [verse]
  [indenting={yes,-2em,first},
   before={\startnarrower[2em]},
   after=\stopnarrower,
%   style={\setupalign[flushleft,nothyphenated]},
   style={\raggedright\nohyphens},
   ]

@Hans, can you change \setupalign to

\unexpanded\def\setupalign
  {\dosingleargument\dosetupalign}

else it can't be used in the style key.

Wolfgang

___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Hanging indent in startstoplines for poems

2010-03-29 Thread Hans Hagen

On 29-3-2010 17:53, Wolfgang Schuster wrote:

Am 29.03.10 17:29, schrieb Torsten Suhling:


Hello,

I have a question regarding hanging indentation in
startstoplines-environment.

So I try to use ConTeXt to typeset poems. In some texts/poems
ar long lines, which have to be broken. They should be broken
into hanging indentations.

Any idea how to do that?

\definelines
[verse]
[indenting={yes,-2em,first},
before={\startnarrower[2em]},
after=\stopnarrower,
% style={\setupalign[flushleft,nothyphenated]},
style={\raggedright\nohyphens},
]

@Hans, can you change \setupalign to

\unexpanded\def\setupalign
{\dosingleargument\dosetupalign}

else it can't be used in the style key.


sure, but i'd expected you to implement a proper align=... then -)

i made a few more in that module unexpanded

i'll upload a beta in a couple of minutes so you were just in time

Hans

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Hanging indent in startstoplines for poems

2010-03-29 Thread Wolfgang Schuster

Am 29.03.10 18:51, schrieb Hans Hagen:

@Hans, can you change \setupalign to

\unexpanded\def\setupalign
  {\dosingleargument\dosetupalign}

else it can't be used in the style key.

sure, but i'd expected you to implement a proper align=... then -)
no problem but what comes next, spacebefore/after, setups, 
interlinespace ...


new keys are a way is it a good idea to add a new one just to use have a 
setup function like alignment?


Wolfgang

___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___