Thanks for the suggestion. But it's after using \vfill that I decided to write to the list. I had this code, which resembles your one: \vfill {\externalfigure[oggettiSonori/tipologia/spaziotipo][width=\textwidth] } \vfill \page here's the output http://www.semiotiche.it/andrea/membrana/testFigure.pdf -a- Andrea Valle DAMS - Facoltà di Scienze della Formazione Università degli Studi di Torino http://www.semiotiche.it/andrea andrea.valle@unito.it
andrea valle wrote:
Thanks for the suggestion. But it's after using \vfill that I decided to write to the list. I had this code, which resembles your one:
\vfill {\externalfigure[oggettiSonori/tipologia/spaziotipo][width=\textwidth] } \vfill \page
here's the output
\startstandardmakeup \centerbox{\externalfigure[oggettiSonori/tipologia/spaziotipo][width=\textwidth]} \stopstandardmakeup ----------------------------------------------------------------- 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 -----------------------------------------------------------------
Thanks to all. (Thomas, I keep on customizing the presentation template you sent me one year ago...) -a- On 19 Jun 2006, at 17:40, Hans Hagen wrote:
andrea valle wrote:
Thanks for the suggestion. But it's after using \vfill that I decided to write to the list. I had this code, which resembles your one:
\vfill {\externalfigure[oggettiSonori/tipologia/spaziotipo][width=\textwidth] } \vfill \page
here's the output
\startstandardmakeup \centerbox{\externalfigure[oggettiSonori/tipologia/ spaziotipo][width=\textwidth]} \stopstandardmakeup
----------------------------------------------------------------- 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 -----------------------------------------------------------------
_______________________________________________ ntg-context mailing list ntg-context@ntg.nl http://www.ntg.nl/mailman/listinfo/ntg-context
Andrea Valle DAMS - Facoltà di Scienze della Formazione Università degli Studi di Torino http://www.semiotiche.it/andrea andrea.valle@unito.it
On Mon, 2006-06-19 at 17:36 +0200, andrea valle wrote:
Thanks for the suggestion. But it's after using \vfill that I decided to write to the list. I had this code, which resembles your one:
\vfill {\externalfigure[oggettiSonori/tipologia/spaziotipo][width=\textwidth] } \vfill \page
here's the output
\strut \vfill \externalfigure[oggettiSonori/tipologia/spaziotipo][width=\textwidth] \vfill \page
Thanks Thomas, it works nice. I still have not understood: what does \strut mean? Best -a- On 19 Jun 2006, at 17:45, Thomas A. Schmitz wrote:
On Mon, 2006-06-19 at 17:36 +0200, andrea valle wrote:
Thanks for the suggestion. But it's after using \vfill that I decided to write to the list. I had this code, which resembles your one:
\vfill {\externalfigure[oggettiSonori/tipologia/spaziotipo][width=\textwidth] } \vfill \page
here's the output
\strut
\vfill
\externalfigure[oggettiSonori/tipologia/spaziotipo][width=\textwidth]
\vfill
\page
_______________________________________________ ntg-context mailing list ntg-context@ntg.nl http://www.ntg.nl/mailman/listinfo/ntg-context
Andrea Valle DAMS - Facoltà di Scienze della Formazione Università degli Studi di Torino http://www.semiotiche.it/andrea andrea.valle@unito.it
Andrea, I'm not a real expert, but what I've understood: \strut is an invisible character with no width but the maximum lineheight (cont-eni, p. 72). TeX discards glue such as \vfill or \hfill at the beginning of horizontal or vertical boxes, so you have to fool it into believing there is something before your \vfill. You could have an empty \vbox, but \strut is the fastest and easiest way of achieving this. HTH Thomas On Mon, 2006-06-19 at 17:55 +0200, andrea valle wrote:
Thanks Thomas, it works nice. I still have not understood: what does \strut mean?
Best -a-
A strut is something with height and depth which is not really what you want, because it takes some vertical space away. Ususally what I use is a TeX primitive "\null" that typesets an empty box; I don't think its typesetting will differ significantly from typesetting a strut: \page \null \vfill text \vfill \null \page Hans van der Meer On Jun 19, 2006, at 18:56, Thomas A. Schmitz wrote:
Andrea,
I'm not a real expert, but what I've understood: \strut is an invisible character with no width but the maximum lineheight (cont-eni, p. 72). TeX discards glue such as \vfill or \hfill at the beginning of horizontal or vertical boxes, so you have to fool it into believing there is something before your \vfill. You could have an empty \vbox, but \strut is the fastest and easiest way of achieving this.
HTH
Thomas
On Mon, 2006-06-19 at 17:55 +0200, andrea valle wrote:
Thanks Thomas, it works nice. I still have not understood: what does \strut mean?
Best -a-
_______________________________________________ ntg-context mailing list ntg-context@ntg.nl http://www.ntg.nl/mailman/listinfo/ntg-context
Hans van der Meer wrote:
A strut is something with height and depth which is not really what you want, because it takes some vertical space away. Ususally what I use is a TeX primitive "\null" that typesets an empty box; I don't think its typesetting will differ significantly from typesetting a strut: \page \null \vfill text \vfill \null \page
Hans van der Meer
indeed, but here i always use \startstandardmakeup \vfill text \vfill \stopstandardmakeup one never knows what side effects \null can have, after all, it is a line 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 -----------------------------------------------------------------
Hans van der Meer wrote:
A strut is something with height and depth which is not really what you want, because it takes some vertical space away.
in addition to this: using \showstruts will make struts visible ----------------------------------------------------------------- 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 -----------------------------------------------------------------
participants (4)
-
andrea valle
-
Hans Hagen
-
Hans van der Meer
-
Thomas A. Schmitz