ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Re: How to overlap two figures?
@ 2008-11-26  5:10 Dalyoung Jeong
  0 siblings, 0 replies; 8+ messages in thread
From: Dalyoung Jeong @ 2008-11-26  5:10 UTC (permalink / raw)
  To: ntg-context

Thank you for all the suggestions.

I have tried your suggestions and they worked well.

Thank you again.

Best regards,

Dalyoung
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: How to overlap two figures?
  2008-11-25  8:59 그래프 수학과
  2008-11-25 10:21 ` Yue Wang
@ 2008-11-25 11:19 ` Mojca Miklavec
  1 sibling, 0 replies; 8+ messages in thread
From: Mojca Miklavec @ 2008-11-25 11:19 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Tue, Nov 25, 2008 at 9:59 AM, 그래프 수학과 <haksan@mac.com> wrote:
> Dear Yue,
>
> Thank you for the reply.
>>
>>
>> why not process the base file figure each time before process each
>> figure.
>>
>
> Yes, That is what I did.
> I am curious if there is a way of shorten the length of code which is
> less important.

Hello,

I do not claim that this is the right way to do it, but if you draw
figures with metafun, you can easily use macros to draw parts of
figures or create snapshots of figures with currentpicture:

\starttext

\startMPcode
picture a;
draw fullcircle scaled 3cm;
a := currentpicture;
\stopMPcode

\startMPcode
draw a;
draw fullsquare scaled 3cm;
\stopMPcode

\stoptext

If you have external figures, then you can work with overlays as Hans
pointed out.

Mojca
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: How to overlap two figures?
  2008-11-25 10:21 ` Yue Wang
@ 2008-11-25 10:22   ` Yue Wang
  0 siblings, 0 replies; 8+ messages in thread
From: Yue Wang @ 2008-11-25 10:22 UTC (permalink / raw)
  To: mailing list for ConTeXt users

2008/11/25 Yue Wang <yuleopen@gmail.com>:
> On Tue, Nov 25, 2008 at 8:59 AM, 그래프 수학과 <haksan@mac.com> wrote:
>> Dear Yue,
>>
>> Thank you for the reply.
>>>
>>>
>>> why not process the base file figure each time before process each
>>> figure.
>>>
>>
>> Yes, That is what I did.
>> I am curious if there is a way of shorten the length of code which is
>> less important.
>>
>
>
> you dont have to type the same code in each mp figure.
> see sec 3.4 of the metafun manual, you can processMPbuffer.
>
also, \includeMPgraphic discussed in sec 3.7

>
>> Thank you again.
>>
>> Best regards,
>>
>> Dalyoung
>> ___________________________________________________________________________________
>> 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  : https://foundry.supelec.fr/projects/contextrev/
>> wiki     : http://contextgarden.net
>> ___________________________________________________________________________________
>>
>
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: How to overlap two figures?
  2008-11-25  8:59 그래프 수학과
@ 2008-11-25 10:21 ` Yue Wang
  2008-11-25 10:22   ` Yue Wang
  2008-11-25 11:19 ` Mojca Miklavec
  1 sibling, 1 reply; 8+ messages in thread
From: Yue Wang @ 2008-11-25 10:21 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Tue, Nov 25, 2008 at 8:59 AM, 그래프 수학과 <haksan@mac.com> wrote:
> Dear Yue,
>
> Thank you for the reply.
>>
>>
>> why not process the base file figure each time before process each
>> figure.
>>
>
> Yes, That is what I did.
> I am curious if there is a way of shorten the length of code which is
> less important.
>


you dont have to type the same code in each mp figure.
see sec 3.4 of the metafun manual, you can processMPbuffer.


> Thank you again.
>
> Best regards,
>
> Dalyoung
> ___________________________________________________________________________________
> 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  : https://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________
>
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: How to overlap two figures?
@ 2008-11-25  8:59 그래프 수학과
  2008-11-25 10:21 ` Yue Wang
  2008-11-25 11:19 ` Mojca Miklavec
  0 siblings, 2 replies; 8+ messages in thread
From: 그래프 수학과 @ 2008-11-25  8:59 UTC (permalink / raw)
  To: ntg-context

Dear Yue,

Thank you for the reply.
>
>
> why not process the base file figure each time before process each  
> figure.
>

Yes, That is what I did.
I am curious if there is a way of shorten the length of code which is  
less important.

Thank you again.

Best regards,

Dalyoung
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: How to overlap two figures?
  2008-11-24 23:06 그래프 수학과
  2008-11-25  2:36 ` Yue Wang
@ 2008-11-25  8:26 ` Hans Hagen
  1 sibling, 0 replies; 8+ messages in thread
From: Hans Hagen @ 2008-11-25  8:26 UTC (permalink / raw)
  To: mailing list for ConTeXt users

??? ??? wrote:
> Dear all,
> 
> I'd like to two figures in one place.
> 
> There is a base figure, and
> I'd like to put other figures on the base figure case by case.
> 
> base file + figure 1,
> base file + figure 2,
> ....
> 
> The figures are created using metafun.
> 
> Thank you for help.

\startoverlay
   {..}
   {..}
   {..}
\stopoverlay

make sure that they have the same boundingboxes

-----------------------------------------------------------------
                                           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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: How to overlap two figures?
  2008-11-24 23:06 그래프 수학과
@ 2008-11-25  2:36 ` Yue Wang
  2008-11-25  8:26 ` Hans Hagen
  1 sibling, 0 replies; 8+ messages in thread
From: Yue Wang @ 2008-11-25  2:36 UTC (permalink / raw)
  To: mailing list for ConTeXt users

why not process the base file figure each time before process each figure.

On Tue, Nov 25, 2008 at 7:06 AM, 그래프 수학과 <haksan@mac.com> wrote:
> Dear all,
>
> I'd like to two figures in one place.
>
> There is a base figure, and
> I'd like to put other figures on the base figure case by case.
>
> base file + figure 1,
> base file + figure 2,
> ...
>
> The figures are created using metafun.
>
> Thank you for help.
>
> Dalyoung
> ___________________________________________________________________________________
> 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  : https://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________
>
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* How to overlap two figures?
@ 2008-11-24 23:06 그래프 수학과
  2008-11-25  2:36 ` Yue Wang
  2008-11-25  8:26 ` Hans Hagen
  0 siblings, 2 replies; 8+ messages in thread
From: 그래프 수학과 @ 2008-11-24 23:06 UTC (permalink / raw)
  To: ntg-context

Dear all,

I'd like to two figures in one place.

There is a base figure, and
I'd like to put other figures on the base figure case by case.

base file + figure 1,
base file + figure 2,
...

The figures are created using metafun.

Thank you for help.

Dalyoung
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

end of thread, other threads:[~2008-11-26  5:10 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-11-26  5:10 How to overlap two figures? Dalyoung Jeong
  -- strict thread matches above, loose matches on Subject: below --
2008-11-25  8:59 그래프 수학과
2008-11-25 10:21 ` Yue Wang
2008-11-25 10:22   ` Yue Wang
2008-11-25 11:19 ` Mojca Miklavec
2008-11-24 23:06 그래프 수학과
2008-11-25  2:36 ` Yue Wang
2008-11-25  8:26 ` 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).