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>