ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* poetry \startlines and tab
@ 2022-01-11  2:01 Youssef Cherem via ntg-context
  2022-01-11  8:27 ` Hans Hagen via ntg-context
  2022-01-12  0:09 ` jbf via ntg-context
  0 siblings, 2 replies; 4+ messages in thread
From: Youssef Cherem via ntg-context @ 2022-01-11  2:01 UTC (permalink / raw)
  To: ntg-context; +Cc: Youssef Cherem


[-- Attachment #1.1: Type: text/plain, Size: 234 bytes --]

Hello,

I needed to typeset some poetry and noticed that

\startlines[space=on]

Some line with tab % doesn't work, no spaces added

Some line with spaces %work

\stoplines


Is there a way to make the "tab" render the space "as is"?

[-- Attachment #1.2: Type: text/html, Size: 1056 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: poetry \startlines and tab
  2022-01-11  2:01 poetry \startlines and tab Youssef Cherem via ntg-context
@ 2022-01-11  8:27 ` Hans Hagen via ntg-context
  2022-01-12  0:09 ` jbf via ntg-context
  1 sibling, 0 replies; 4+ messages in thread
From: Hans Hagen via ntg-context @ 2022-01-11  8:27 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Hans Hagen

On 1/11/2022 3:01 AM, Youssef Cherem via ntg-context wrote:
> Hello,
> 
> I needed to typeset some poetry and noticed that
> 
> \startlines[space=on]
> 
> Some line with tab % doesn't work, no spaces added
> 
> Some line with spaces %work
> 
> \stoplines
> 
> 
> Is there a way to make the "tab" render the space "as is"?
one can make the tab 'active' and have a meaning of say 2em but that's 
normally not what one does in tex ... btw, there are options for doing 
lines with odd/even indentation schemes

a tab at the start of a line (when it can be recognized as such) could 
work but in the middle ... doable but still somewhat hackery because it 
involves position tracking

Hans

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
        tel: 038 477 53 69 | www.pragma-ade.nl | 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: poetry \startlines and tab
  2022-01-11  2:01 poetry \startlines and tab Youssef Cherem via ntg-context
  2022-01-11  8:27 ` Hans Hagen via ntg-context
@ 2022-01-12  0:09 ` jbf via ntg-context
  2022-01-12 11:43   ` Hans Hagen via ntg-context
  1 sibling, 1 reply; 4+ messages in thread
From: jbf via ntg-context @ 2022-01-12  0:09 UTC (permalink / raw)
  To: Youssef Cherem via ntg-context, ycherem; +Cc: jbf


[-- Attachment #1.1: Type: text/plain, Size: 1354 bytes --]

For poetry that has non-regular indentations, I simply 
\definelines[poem] and set that up the way I want, obviously, with 
\setuplines[poem]  e.g. [before={\blank 
\setupinterlinespace[line=2.5ex]},after={\blank},indenting=first].

And then, but I guess it is still a hack, I use \hskip at a suitable 
dimension whenever I need indented lines:

\startpoem
This is line one,
\hskip1em{This is line two}
This is line three,
\hskip1em{This is line four,}
\hskip1em{This is line five.}

\rightaligned{Poet's name}
\stoppoem

Julian

On 11/1/22 1:01 pm, Youssef Cherem via ntg-context wrote:
> Hello,
>
> I needed to typeset some poetry and noticed that
>
> \startlines[space=on]
>
> Some line with tab % doesn't work, no spaces added
>
> Some line with spaces %work
>
> \stoplines
>
> Is there a way to make the "tab" render the space "as is"?
>
>
> ___________________________________________________________________________________
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________

[-- Attachment #1.2: Type: text/html, Size: 3455 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: poetry \startlines and tab
  2022-01-12  0:09 ` jbf via ntg-context
@ 2022-01-12 11:43   ` Hans Hagen via ntg-context
  0 siblings, 0 replies; 4+ messages in thread
From: Hans Hagen via ntg-context @ 2022-01-12 11:43 UTC (permalink / raw)
  To: mailing list for ConTeXt users, ycherem; +Cc: Hans Hagen

On 1/12/2022 1:09 AM, jbf via ntg-context wrote:
> For poetry that has non-regular indentations, I simply 
> \definelines[poem] and set that up the way I want, obviously, with 
> \setuplines[poem]  e.g. [before={\blank 
> \setupinterlinespace[line=2.5ex]},after={\blank},indenting=first].
> 
> And then, but I guess it is still a hack, I use \hskip at a suitable 
> dimension whenever I need indented lines:
> 
> \startpoem
> This is line one,
> \hskip1em{This is line two}
> This is line three,
> \hskip1em{This is line four,}
> \hskip1em{This is line five.}
> 
> \rightaligned{Poet's name}
> \stoppoem
\quad

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
        tel: 038 477 53 69 | www.pragma-ade.nl | 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-01-12 11:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-11  2:01 poetry \startlines and tab Youssef Cherem via ntg-context
2022-01-11  8:27 ` Hans Hagen via ntg-context
2022-01-12  0:09 ` jbf via ntg-context
2022-01-12 11:43   ` Hans Hagen via ntg-context

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).