This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: 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>


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]