Salut,

Quelqu'un peux-t-il me dire pourquoi les 3 codes suivant fournissent la meme taille pour les footnote:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
	PROC UNIVARIATE DATA=sashelp.orsales ;
		VAR Profit; 
		QQPLOT Profit/ name="orsales" nohlabel novlabel;
		FOOTNOTE "group" height=60 in ;
		TITLE "Titre 1";
		TITLE2 "Normal probability plot" ;
	RUN;	
PROC UNIVARIATE DATA=sashelp.orsales ;
		VAR Profit; 
		QQPLOT Profit/ name="orsales" nohlabel novlabel;
		FOOTNOTE "group" height=30 in ;
		TITLE "Titre 1";
		TITLE2 "Normal probability plot" ;
	RUN;	
PROC UNIVARIATE DATA=sashelp.orsales ;
		VAR Profit; 
		QQPLOT Profit/ name="orsales" nohlabel novlabel;
		FOOTNOTE "group" height=.3 in ;
		TITLE "Titre 1";
		TITLE2 "Normal probability plot" ;
	RUN;
Question alternative, comment faire pour pouvoir jouer avec la taille et l'ajustement des titres et footnotes?

Merci,

Manoutz