
Hello Is it possible to suppress the headline on pages which are entirely occupied by an illustration? This is sometimes useful to maximize the space available for the picture, especially a landscape picture with a lot of detail. I have used 'orientation=270' to position a figure in landscape mode, with the width set to the vertical height of the page (or close to it if that would make the overall size too large). But I haven't worked out how to set the caption underneath the figure (that is, rotate the caption also, using the full width of the figure): the caption appears at the bottom of the page as for a portrait-oriented figure, which is inconvenient for the reader. Best wishes John Waś *🇪🇺 * Слава Україні! * 🇺🇦* http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free.www.avg.com http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

You can use \startpagefigure: https://wiki.contextgarden.net/Command/startpagefigure Matthias
On Jul 7, 2025, at 10:22 AM, John Was
wrote: Hello
Is it possible to suppress the headline on pages which are entirely occupied by an illustration? This is sometimes useful to maximize the space available for the picture, especially a landscape picture with a lot of detail.
I have used 'orientation=270' to position a figure in landscape mode, with the width set to the vertical height of the page (or close to it if that would make the overall size too large). But I haven't worked out how to set the caption underneath the figure (that is, rotate the caption also, using the full width of the figure): the caption appears at the bottom of the page as for a portrait-oriented figure, which is inconvenient for the reader.
Best wishes
John Waś 🇪🇺 Слава Україні! 🇺🇦
http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free.www.avg.com http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail x-msg://2/#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl webpage : https://www.pragma-ade.nl / https://context.aanhet.net (mirror) archive : https://github.com/contextgarden/context wiki : https://wiki.contextgarden.net ___________________________________________________________________________________

There are a few ways to do this. \noheaderandfooterlines does literally
just that on the page on which it is called. What I tend to do is slightly
more involved - I set up a landscape layout at the same time as I'm setting
up the normal portrait one, using \definelayout, and then I switch to that
layout using \setuplayout when I'm doing a landscape figure or table. This
has two advantages - it gives you much more control over the page layout
for your landscape pages, and it encourages most viewers to display those
pages in landscape, making proofs much more readable online.
Duncan
On Mon, 7 Jul 2025 at 15:25, John Was
Hello
Is it possible to suppress the headline on pages which are entirely occupied by an illustration? This is sometimes useful to maximize the space available for the picture, especially a landscape picture with a lot of detail.
I have used 'orientation=270' to position a figure in landscape mode, with the width set to the vertical height of the page (or close to it if that would make the overall size too large). But I haven't worked out how to set the caption underneath the figure (that is, rotate the caption also, using the full width of the figure): the caption appears at the bottom of the page as for a portrait-oriented figure, which is inconvenient for the reader.
Best wishes
John Waś *🇪🇺 * Слава Україні! * 🇺🇦*
http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free.www.avg.com http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#m_-8637098383621652933_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl webpage : https://www.pragma-ade.nl / https://context.aanhet.net (mirror) archive : https://github.com/contextgarden/context wiki : https://wiki.contextgarden.net
___________________________________________________________________________________

Am 07.07.25 um 17:44 schrieb Duncan Hothersall:
There are a few ways to do this.
Indeed. I’m usually using layers (because "full page" for me usually means bleeding), a makeup and postponing: """ \definemeasure[Bleed][3mm] \definemeasure[Trim][7.5mm] \definemeasure[maxWidth][\paperwidth + \measured{Bleed}] \definemeasure[maxHeight][\paperheight + 2\measured{Bleed}] \definelayer[bgpicright][ x=0mm,y=-\measure{Bleed}, width=\measure{maxWidth}, height=\measure{maxHeight}, ] \definemakeup[fullpage][ page=no, doublesided=no, headerstate=empty, footerstate=empty, pagestate=start, ] \startpostponing[<pagenumber>] % pagenumber can be absolute 99 or relative +1 \startfullpagemakeup % version for a right page: \setlayer[bgpicright] [x=0mm,y=-\measure{Bleed}]{% \externalfigure[#4][height=\measure{maxHeight}]}% \stopfullpagemakeup \stoppostponing """ Beware, this is simplified and not complete. I’m using a convoluted macro with several parameters to adjust the size according to width/height, to add a caption and to split the image for double page spreads. Postponing handles not only to get to the desired page but also ensures that the page numbering afterwards is correct. Hraban

On 7 Jul 2025, at 15:22, John Was
wrote: But I haven't worked out how to set the caption underneath the figure (that is, rotate the caption also, using the full width of the figure): the caption appears at the bottom of the page as for a portrait-oriented figure, which is inconvenient for the reader.
\placefigure [90] {This is a cow} {\externalfigure[cow]} Regards, — Bruce Horrocks Hampshire, UK

Am 07.07.2025 um 16:22 schrieb John Was:
Hello
Is it possible to suppress the headline on pages which are entirely occupied by an illustration? This is sometimes useful to maximize the space available for the picture, especially a landscape picture with a lot of detail.
I have used 'orientation=270' to position a figure in landscape mode, with the width set to the vertical height of the page (or close to it if that would make the overall size too large). But I haven't worked out how to set the caption underneath the figure (that is, rotate the caption also, using the full width of the figure): the caption appears at the bottom of the page as for a portrait-oriented figure, which is inconvenient for the reader.
You already got a few suggestions but for a better answer it is always helpful to provide a minimal example which shows what you have tried so far. To create an example without the need for external ressources you can either use one of the included sample images %%%% begin example \setupexternalfigures[location=default] \starttext \startcombination[2*2] {\externalfigure[spider.eps][combination]}{spider.eps} {\externalfigure [mill.png][combination]}{mill.png} {\externalfigure [cow.pdf][combination]}{cow.pdf} {\externalfigure[hacker.jpg][combination]}{hacker.png} \stopcombination \stoptext %%%% end example or use the dummy library to add random backgrounds to images. %%%% begin example \useMPlibrary[dum] \starttext \startcombination[3*1] {\externalfigure [wide][width=6cm,height=4cm]}{} {\externalfigure[equal][width=4cm,height=4cm]}{} {\externalfigure [tall][width=4cm,height=6cm]}{} \stopcombination \stoptext %%%% end example Wolfgang

Many thanks to everyone for advice - I combined various suggestions and managed to end up with a landscape picture occupying the full page. The various options for removing the running headline seemed not to work - I was hopeful that headerstate=empty might, but \placefigure seems not to admit this as an option, and I didn't want to get too involved with Hraban's elegant solution for bleeding illustrations (which may well be useful in future work). At any rate, I cheated by putting this hamfisted code in front of the caption: \llap{\color[white]{\smash{\vrule height 310pt depth 24pt width 24pt}}\kern 12pt} That doesn't remove the headline but it obliterates it! Best wishes John *🇪🇺 * Слава Україні! * 🇺🇦* http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free.www.avg.com http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2> On Mon, 7 Jul 2025 at 22:27, Wolfgang Schuster < wolfgang.schuster.lists@gmail.com> wrote:
Am 07.07.2025 um 16:22 schrieb John Was:
Hello
Is it possible to suppress the headline on pages which are entirely occupied by an illustration? This is sometimes useful to maximize the space available for the picture, especially a landscape picture with a lot of detail.
I have used 'orientation=270' to position a figure in landscape mode, with the width set to the vertical height of the page (or close to it if that would make the overall size too large). But I haven't worked out how to set the caption underneath the figure (that is, rotate the caption also, using the full width of the figure): the caption appears at the bottom of the page as for a portrait-oriented figure, which is inconvenient for the reader.
You already got a few suggestions but for a better answer it is always helpful to provide a minimal example which shows what you have tried so far. To create an example without the need for external ressources you can either use one of the included sample images
%%%% begin example \setupexternalfigures[location=default]
\starttext
\startcombination[2*2] {\externalfigure[spider.eps][combination]}{spider.eps} {\externalfigure [mill.png][combination]}{mill.png} {\externalfigure [cow.pdf][combination]}{cow.pdf} {\externalfigure[hacker.jpg][combination]}{hacker.png} \stopcombination
\stoptext %%%% end example
or use the dummy library to add random backgrounds to images.
%%%% begin example \useMPlibrary[dum]
\starttext
\startcombination[3*1] {\externalfigure [wide][width=6cm,height=4cm]}{} {\externalfigure[equal][width=4cm,height=4cm]}{} {\externalfigure [tall][width=4cm,height=6cm]}{} \stopcombination
\stoptext %%%% end example
Wolfgang
___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl webpage : https://www.pragma-ade.nl / https://context.aanhet.net (mirror) archive : https://github.com/contextgarden/context wiki : https://wiki.contextgarden.net
___________________________________________________________________________________
participants (7)
-
Bruce Horrocks
-
Denis Maier
-
Duncan Hothersall
-
Henning Hraban Ramm
-
John Was
-
Matthias Weber
-
Wolfgang Schuster