groff
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Groff] gtbl, T{ ... T} doesn't work?


From: Werner LEMBERG
Subject: Re: [Groff] gtbl, T{ ... T} doesn't work?
Date: Sat, 12 Jun 2004 15:44:41 +0200 (CEST)

> > TS tab(@); l l l.  1 @ 2 @ 3 1 @ T{ a long text block T} @ 3 .TE
> 
> .TS
> tab(@);
> l l l.
> 1 @ 2 @ 3
> 1 @T{
> a long text block
> T}@ 3
> .TE
> 
> 
> Please consider that the opening T{ follows directly the tab character, in 
> your case @, and dito for the closing T}

The correct way to write it is like this:

  .TS
  tab(@);
  l l l.
  address@hidden@3
  address@hidden
  a long text block
  address@hidden
  .TE

If you want to have space before and after the `@' without
influencing the final appearance, you have to add GNU tbl's
`nospaces' keyword:

  .TS
  nospaces, tab(@);
  l l l.
  1 @ 2 @ 3
  1 @ T{
  a long text block
  T}    @ 3
  .TE


       Werner


reply via email to

[Prev in Thread] Current Thread [Next in Thread]