Next in thread → Next in month →

Re: DOCBOOK-APPS: Image in document header ??

From
Juan R. Migoya <>
Date
2002-02-23T09:57:21+00:00
ID
Thread
Re: DOCBOOK-APPS: Image in document header ??
Try this:

(define (page-inner-header gi)
  (cond
   ((equal? (normalize gi) (normalize "dedication")) (empty-sosofo))
   ((equal? (normalize gi) (normalize "lot")) (empty-sosofo))
   ((equal? (normalize gi) (normalize "part")) (empty-sosofo))
   ((equal? (normalize gi) (normalize "toc")) (empty-sosofo))
   (else 
	(make sequence
		font-size: 2.54cm
     	 (make external-graphic
		display?: #f
		entity-system-id: "C:/logos/mylogo.pdf"
		max-width: 2.54cm
		max-height: 2.54cm
		)))))

HTH
Regards,
Juan R. Migoya
SPAIN

Declan Halpin wrote:
> 
> Hi ,
> 
> Is it possible to put images in document header elements ?
> Tried the following but it doesn't work for me. Anyone got ideas on this ???
> Thanks
> Declan.
> 
> (define (page-inner-header gi)
>   (let* (
>
<snip>
Next in thread → Next in month →