ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Q: \starttyping with color -> only output on first page is colored
@ 2002-10-07 17:25 Markus Boeing
  2002-10-12 16:35 ` Hans Hagen
  0 siblings, 1 reply; 4+ messages in thread
From: Markus Boeing @ 2002-10-07 17:25 UTC (permalink / raw)


Hi,

may I ask a basic question regarding the \starttyping environment?

I want to typeset some verbatim text with color=blue. So I defined:

\setuptyping
	[space=off,		% on off
	page=yes,			% yes no
	option=none,		% slanted normal commands color none
	text=yes,			% yes no
	% icommand=,		% command
	% vcommand=,		% command
	% ccommand=,		% command
	% before=,		% command
	% after=,			% command
	margin=no,		% dimension standard yes no
	% evenmargin=, 	% dimension
	% oddmargin=, 	% dimension
	blank=line, 		% dimension small medium big standard halfline line
	escape=/,			% escape character
	indentnext=yes,	% yes no
	style=normal,	% normal bold slanted boldslanted type cap small... 
command
	color=blue,		% name
	palet=colorpretty,
	lines=no]			% yes no hyphenated

Verbatim text fitting on a single page ist colored blue. However, if the 
text spans multiple pages then only verbatim text on the first page is 
colored blue. On the following pages verbatim text is set in black. I 
have no idea where to look for my mistake. Any help would be well 
appreciated.

Also the coloring works only for \starttyping and \typefile but not for 
\type.

I do have yet another issue. When I have a \subsection followed 
immediately by a \starttyping then sometimes I end up with the section 
title as the last item on a page. Verbatim text starts on the following 
page. In that case I would like to have the section title on the same 
page as the verbatim text. Again, I have no idea where to look for my 
mistake.

Thanks,
/Markus.

+---
Markus A. Boeing
mailto://markus@boeing-online.de
http://www.boeing-online.de
+---


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

* Re: Q: \starttyping with color -> only output on first page is colored
  2002-10-07 17:25 Q: \starttyping with color -> only output on first page is colored Markus Boeing
@ 2002-10-12 16:35 ` Hans Hagen
  2002-10-13 10:42   ` Markus Boeing
  0 siblings, 1 reply; 4+ messages in thread
From: Hans Hagen @ 2002-10-12 16:35 UTC (permalink / raw)
  Cc: ntg-context

At 07:25 PM 10/7/2002 +0200, Markus Boeing wrote:

>Verbatim text fitting on a single page ist colored blue. However, if the 
>text spans multiple pages then only verbatim text on the first page is 
>colored blue. On the following pages verbatim text is set in black. I have 
>no idea where to look for my mistake. Any help would be well appreciated.

This works ok here, do you run a recent version ? (at least sync with my 
latest version to be sure)

>Also the coloring works only for \starttyping and \typefile but not for \type.

\setuptype[color=green]

actually, you can do things like:

\definetype [blabla] \setyptype[blabla][color=red] \blabla{this should be 
red} indeed

>I do have yet another issue. When I have a \subsection followed 
>immediately by a \starttyping then sometimes I end up with the section 
>title as the last item on a page. Verbatim text starts on the following 
>page. In that case I would like to have the section title on the same page 
>as the verbatim text. Again, I have no idea where to look for my mistake.

try to add \page[no] before the starttyping; the break results from the 
\blank preceding the typing (which is legal); this is something on my 
agenda of 'to be sorted out'

Hans
-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------


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

* Re: Q: \starttyping with color -> only output on first page is colored
  2002-10-12 16:35 ` Hans Hagen
@ 2002-10-13 10:42   ` Markus Boeing
  2002-10-13 18:41     ` Hans Hagen
  0 siblings, 1 reply; 4+ messages in thread
From: Markus Boeing @ 2002-10-13 10:42 UTC (permalink / raw)
  Cc: ntg-context

Am Samstag den, 12. Oktober 2002, um 18:35, schrieb Hans Hagen:

> At 07:25 PM 10/7/2002 +0200, Markus Boeing wrote:
>
>> Verbatim text fitting on a single page ist colored blue. However, if 
>> the text spans multiple pages then only verbatim text on the first 
>> page is colored blue. On the following pages verbatim text is set in 
>> black. I have no idea where to look for my mistake. Any help would be 
>> well appreciated.
>
> This works ok here, do you run a recent version ? (at least sync with 
> my latest version to be sure)

Well, I was afraid this proposal might come up. :) I don't think I am 
running your latest code. Actually I have no idea what version of code I 
am running. I just installed the MacOS X distribution of tetex about a 
year ago. So it is going into the bits and pieces of a TeX installation 
then? Weeeeeell..guess I am about destroying my TeX in the course of 
it. :)

>
>> Also the coloring works only for \starttyping and \typefile but not 
>> for \type.
>
> \setuptype[color=green]

I was missing that piece. Thanks, works great.

>> I do have yet another issue. When I have a \subsection followed 
>> immediately by a \starttyping then sometimes I end up with the section 
>> title as the last item on a page. Verbatim text starts on the 
>> following page. In that case I would like to have the section title on 
>> the same page as the verbatim text. Again, I have no idea where to 
>> look for my mistake.
>
> try to add \page[no] before the starttyping; the break results from the 
> \blank preceding the typing (which is legal); this is something on my 
> agenda of 'to be sorted out'

I experimented with that without success so far. However, I found that 
some more strange behavior disappeared when I removed some \setuphead 
definitions. Looks like my ConTeXt code is full with errors. :(

Thanks for your help.

/Markus.

+---
Markus A. Boeing
mailto://markus@boeing-online.de
http://www.boeing-online.de
+---


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

* Re: Q: \starttyping with color -> only output on first page is colored
  2002-10-13 10:42   ` Markus Boeing
@ 2002-10-13 18:41     ` Hans Hagen
  0 siblings, 0 replies; 4+ messages in thread
From: Hans Hagen @ 2002-10-13 18:41 UTC (permalink / raw)
  Cc: ntg-context

At 12:42 PM 10/13/2002 +0200, Markus Boeing wrote:

>Well, I was afraid this proposal might come up. :) I don't think I am 
>running your latest code. Actually I have no idea what version of code I 
>am running. I just installed the MacOS X distribution of tetex about a 
>year ago. So it is going into the bits and pieces of a TeX installation 
>then? Weeeeeell..guess I am about destroying my TeX in the course of it. :)

just unzip cont-tmf in your texmf-local tree (first erase context/base or 
copy it somewhere outside the tree), next run mktexlsr and texexec --make 
--alone

actually, the texshop environment should help you out

Hans
-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------


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

end of thread, other threads:[~2002-10-13 18:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-07 17:25 Q: \starttyping with color -> only output on first page is colored Markus Boeing
2002-10-12 16:35 ` Hans Hagen
2002-10-13 10:42   ` Markus Boeing
2002-10-13 18:41     ` Hans Hagen

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).