<!doctype style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN">

(element COOKBOOK
   ; All characteristics you will find in the DSSSL-Spec. 12.6.3.
   (make simple-page-sequence
	page-width: 15cm
	page-height: 20cm
	left-margin: 2cm
	right-margin: 2cm
	top-margin: 2cm
	bottom-margin: 2cm
	header-margin: 1cm
	footer-margin: 1cm
	left-header: (literal "left header")
	center-header: (literal "center header")
	right-header: (literal "right header")
	left-footer: (literal "left footer")
	center-footer: (literal "center footer")
	right-footer: (literal "right footer")))

(element CTITLE
   ; All characteristics you will find in the DSSSL-Spec. 12.6.6.
   (make paragraph
	 line-spacing:  30pt
	 font-weight:  'bold
	 font-posture: 'italic
	 font-family-name: "Arial"
	 font-size:    30pt
	 quadding:     'center	 ;alignment
	 start-indent: 2cm
	 end-indent:   2cm	 
	 space-before: 10pt
	 space-after:  10pt
	 ; prevents a break between this paragraph and the previous/next object,
	 ; use to keep for instance a TITLE-Object and its PARAGRAPH together
	 keep-with-previous?: #t   
	 keep-with-next?: #t
	 ; forces a break; replace #f with 'page to get a page break
	 break-before:  #f
	 break-after:   #f))

(element TITLE
   (make paragraph
	 font-size:    24pt
	 line-spacing: 20pt
	 space-before: 2cm))

(element INGREDIENT
   (make paragraph
	font-size:    12pt
	line-spacing: 20pt
	start-indent: 10pt))


