ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Bug (?) using \externalfigure with layers and backgrounds
@ 2020-12-03 17:14 Jairo A. del Rio
  2020-12-03 17:19 ` Wolfgang Schuster
  0 siblings, 1 reply; 3+ messages in thread
From: Jairo A. del Rio @ 2020-12-03 17:14 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Hi everyone. The following

\setuppagenumbering[state=stop]
\definelayer[mybg]
[
repeat=yes,
x=0mm, y=0mm,
width=\paperwidth, height=\paperheight,
]
\setlayer[mybg]{\externalfigure[cow][width=\paperwidth,height=\paperheight]}
\setupbackgrounds[page][background=mybg,state=repeat]
\setupindenting[yes,small]
\startsetups background:default
\setupbackgrounds[page][background=mybg,state=repeat]
\stopsetups
\startsetups background:void
\setupbackgrounds[page][background=]
\stopsetups
\starttext
\dorecurse{7}{\input knuth}
\page
\setups[background:void]
\dorecurse{8}{\input tufte}
\page
\setups[background:default]
\dorecurse{7}{\input knuth}
\page
\stoptext

works with a local image (say, if "cow" is in the same folder as the main
file), but it doesn't find sample images (cow, hacker, etc.). Is that a bug
or an intended result? Thank you in advance.

Best regards,

Jairo

[-- Attachment #1.2: Type: text/html, Size: 1079 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] 3+ messages in thread

* Re: Bug (?) using \externalfigure with layers and backgrounds
  2020-12-03 17:14 Bug (?) using \externalfigure with layers and backgrounds Jairo A. del Rio
@ 2020-12-03 17:19 ` Wolfgang Schuster
  2020-12-03 17:21   ` Jairo A. del Rio
  0 siblings, 1 reply; 3+ messages in thread
From: Wolfgang Schuster @ 2020-12-03 17:19 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Jairo A. del Rio schrieb am 03.12.2020 um 18:14:
> Hi everyone. The following
>
> \setuppagenumbering[state=stop]
> \definelayer[mybg]
> [
> repeat=yes,
> x=0mm, y=0mm,
> width=\paperwidth, height=\paperheight,
> ]
> \setlayer[mybg]{\externalfigure[cow][width=\paperwidth,height=\paperheight]}
> \setupbackgrounds[page][background=mybg,state=repeat]
> \setupindenting[yes,small]
> \startsetups background:default
> \setupbackgrounds[page][background=mybg,state=repeat]
> \stopsetups
> \startsetups background:void
> \setupbackgrounds[page][background=]
> \stopsetups
> \starttext
> \dorecurse{7}{\input knuth}
> \page
> \setups[background:void]
> \dorecurse{8}{\input tufte}
> \page
> \setups[background:default]
> \dorecurse{7}{\input knuth}
> \page
> \stoptext
>
> works with a local image (say, if "cow" is in the same folder as the 
> main file), but it doesn't find sample images (cow, hacker, etc.). Is 
> that a bug or an intended result? Thank you in advance.

This is normal, to load figures from the tex directory use 
\setupexternalfigures[location=default].

More information are on the wiki: 
https://wiki.contextgarden.net/Command/setupexternalfigure

Wolfgang

___________________________________________________________________________________
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] 3+ messages in thread

* Re: Bug (?) using \externalfigure with layers and backgrounds
  2020-12-03 17:19 ` Wolfgang Schuster
@ 2020-12-03 17:21   ` Jairo A. del Rio
  0 siblings, 0 replies; 3+ messages in thread
From: Jairo A. del Rio @ 2020-12-03 17:21 UTC (permalink / raw)
  To: Wolfgang Schuster; +Cc: mailing list for ConTeXt users


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

Oh, I see. Nice, thank you a lot.

Jairo :)

El jue, 3 de dic. de 2020 a la(s) 12:19, Wolfgang Schuster (
wolfgang.schuster.lists@gmail.com) escribió:

> Jairo A. del Rio schrieb am 03.12.2020 um 18:14:
> > Hi everyone. The following
> >
> > \setuppagenumbering[state=stop]
> > \definelayer[mybg]
> > [
> > repeat=yes,
> > x=0mm, y=0mm,
> > width=\paperwidth, height=\paperheight,
> > ]
> >
> \setlayer[mybg]{\externalfigure[cow][width=\paperwidth,height=\paperheight]}
> > \setupbackgrounds[page][background=mybg,state=repeat]
> > \setupindenting[yes,small]
> > \startsetups background:default
> > \setupbackgrounds[page][background=mybg,state=repeat]
> > \stopsetups
> > \startsetups background:void
> > \setupbackgrounds[page][background=]
> > \stopsetups
> > \starttext
> > \dorecurse{7}{\input knuth}
> > \page
> > \setups[background:void]
> > \dorecurse{8}{\input tufte}
> > \page
> > \setups[background:default]
> > \dorecurse{7}{\input knuth}
> > \page
> > \stoptext
> >
> > works with a local image (say, if "cow" is in the same folder as the
> > main file), but it doesn't find sample images (cow, hacker, etc.). Is
> > that a bug or an intended result? Thank you in advance.
>
> This is normal, to load figures from the tex directory use
> \setupexternalfigures[location=default].
>
> More information are on the wiki:
> https://wiki.contextgarden.net/Command/setupexternalfigure
>
> Wolfgang
>
>

[-- Attachment #1.2: Type: text/html, Size: 2062 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] 3+ messages in thread

end of thread, other threads:[~2020-12-03 17:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-03 17:14 Bug (?) using \externalfigure with layers and backgrounds Jairo A. del Rio
2020-12-03 17:19 ` Wolfgang Schuster
2020-12-03 17:21   ` Jairo A. del Rio

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