ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* using \startfiguretext ... \stopfiguretext
@ 2004-12-09 14:47 Nikolai Weibull
  2004-12-09 16:03 ` David Munger
  0 siblings, 1 reply; 6+ messages in thread
From: Nikolai Weibull @ 2004-12-09 14:47 UTC (permalink / raw)


How do I get a figure with text that is displayed like

	Figure
	Text
	Caption

where we first have the figure, then a description of it below, and
finally a caption?  So far I've only managed to get the text to appear
to the left or right of the figure.
	nikolai

-- 
::: name: Nikolai Weibull    :: aliases: pcp / lone-star / aka :::
::: born: Chicago, IL USA    :: loc atm: Gothenburg, Sweden    :::
::: page: www.pcppopper.org  :: fun atm: gf,lps,ruby,lisp,war3 :::
main(){printf(&linux["\021%six\012\0"],(linux)["have"]+"fun"-97);}

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

* Re: using \startfiguretext ... \stopfiguretext
  2004-12-09 14:47 using \startfiguretext ... \stopfiguretext Nikolai Weibull
@ 2004-12-09 16:03 ` David Munger
  2004-12-09 18:00   ` Nikolai Weibull
  0 siblings, 1 reply; 6+ messages in thread
From: David Munger @ 2004-12-09 16:03 UTC (permalink / raw)


Hi NIkolai,

It might not be the only way, this should work:

\placefigure
  [here]
  [fig:somelabel]
  {Caption}
  \placelegend{Figure}
  {Text}


Nikolai Weibull wrote :
> How do I get a figure with text that is displayed like
> 
> 	Figure
> 	Text
> 	Caption
> 
> where we first have the figure, then a description of it below, and
> finally a caption?  So far I've only managed to get the text to appear
> to the left or right of the figure.
> 	nikolai
> 

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

* Re: using \startfiguretext ... \stopfiguretext
  2004-12-09 16:03 ` David Munger
@ 2004-12-09 18:00   ` Nikolai Weibull
  2004-12-10 21:16     ` h h extern
  0 siblings, 1 reply; 6+ messages in thread
From: Nikolai Weibull @ 2004-12-09 18:00 UTC (permalink / raw)


* David Munger <mungerd@users.sourceforge.net> [Dec 09, 2004 17:10]:
> It might not be the only way, this should work:
> 
> \placefigure
>   [here]
>   [fig:somelabel]
>   {Caption}
>   \placelegend{Figure}
>   {Text}

Hm, yeah, that works OK.  I was hoping for something that made a little
more sense, but this seems to be fine.  I'm still hoping for a slightly
more pleasant solution, but until then, is there a way to set the style
of Text?  There's bodyfont, but how do I get \it?
	nikolai

-- 
::: name: Nikolai Weibull    :: aliases: pcp / lone-star / aka :::
::: born: Chicago, IL USA    :: loc atm: Gothenburg, Sweden    :::
::: page: www.pcppopper.org  :: fun atm: gf,lps,ruby,lisp,war3 :::
main(){printf(&linux["\021%six\012\0"],(linux)["have"]+"fun"-97);}

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

* Re: using \startfiguretext ... \stopfiguretext
  2004-12-09 18:00   ` Nikolai Weibull
@ 2004-12-10 21:16     ` h h extern
  2004-12-12 22:13       ` Nikolai Weibull
  0 siblings, 1 reply; 6+ messages in thread
From: h h extern @ 2004-12-10 21:16 UTC (permalink / raw)


Nikolai Weibull wrote:
> * David Munger <mungerd@users.sourceforge.net> [Dec 09, 2004 17:10]:
> 
>>It might not be the only way, this should work:
>>
>>\placefigure
>>  [here]
>>  [fig:somelabel]
>>  {Caption}
>>  \placelegend{Figure}
>>  {Text}
> 
> 
> Hm, yeah, that works OK.  I was hoping for something that made a little

ik, let's give you a cue:

\placefigure
   {What a caption}
   {\placelegend
      {\externalfigure[cow.pdf]}
      {\input zapf \relax}}

\placefigure
   {What a caption}
   {\placelegend[location=right]
      {\externalfigure[cow.pdf]}
      {\input zapf \relax}}

using buffers makes sense here:

\startbuffer
lots of text
\stopbuffer

\placefigure
   {What a caption}
   {\placelegend
      {\externalfigure[cow.pdf]}
      {\getbuffer}}

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

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

* Re: using \startfiguretext ... \stopfiguretext
  2004-12-10 21:16     ` h h extern
@ 2004-12-12 22:13       ` Nikolai Weibull
  2004-12-13 10:16         ` Hans Hagen
  0 siblings, 1 reply; 6+ messages in thread
From: Nikolai Weibull @ 2004-12-12 22:13 UTC (permalink / raw)


* h h extern <pragma@wxs.nl> [Dec 11, 2004 14:05]:
> >>It might not be the only way, this should work:
> >>
> >>\placefigure
> >> [here]
> >> [fig:somelabel]
> >> {Caption}
> >> \placelegend{Figure}
> >> {Text}

> >Hm, yeah, that works OK.  I was hoping for something that made a little

> ik, let's give you a cue:

I don't understand...is that an "ik", as in "I disapprove"?

> \placefigure
>   {What a caption}
>   {\placelegend
>      {\externalfigure[cow.pdf]}
>      {\input zapf \relax}}
> 
> \placefigure
>   {What a caption}
>   {\placelegend[location=right]
>      {\externalfigure[cow.pdf]}
>      {\input zapf \relax}}

> using buffers makes sense here:

> \startbuffer
> lots of text
> \stopbuffer
> 
> \placefigure
>   {What a caption}
>   {\placelegend
>      {\externalfigure[cow.pdf]}
>      {\getbuffer}}

Yeah, that's a good suggestion,
	nikolai

-- 
::: name: Nikolai Weibull    :: aliases: pcp / lone-star / aka :::
::: born: Chicago, IL USA    :: loc atm: Gothenburg, Sweden    :::
::: page: www.pcppopper.org  :: fun atm: gf,lps,ruby,lisp,war3 :::
main(){printf(&linux["\021%six\012\0"],(linux)["have"]+"fun"-97);}

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

* Re: using \startfiguretext ... \stopfiguretext
  2004-12-12 22:13       ` Nikolai Weibull
@ 2004-12-13 10:16         ` Hans Hagen
  0 siblings, 0 replies; 6+ messages in thread
From: Hans Hagen @ 2004-12-13 10:16 UTC (permalink / raw)


Nikolai Weibull wrote:

>>ik, let's give you a cue:
> 
> 
> I don't understand...is that an "ik", as in "I disapprove"?

no, a typo: ik => ok

Hans

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

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

end of thread, other threads:[~2004-12-13 10:16 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-12-09 14:47 using \startfiguretext ... \stopfiguretext Nikolai Weibull
2004-12-09 16:03 ` David Munger
2004-12-09 18:00   ` Nikolai Weibull
2004-12-10 21:16     ` h h extern
2004-12-12 22:13       ` Nikolai Weibull
2004-12-13 10:16         ` 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).