<div dir="ltr">Hi, <div><br></div><div>I'm learning some scribble, along with adding some images from plot.</div><div><br></div><div>This works nicely, but i'm trying to work out how to improve  the image quality in the resulting PDF. (the html output is fine.)</div><div><br></div><div>is there any way to make my images sharper and clearer in PDF?</div><div><br></div><div>kind regards,</div><div><br></div><div>Stephen</div><div><br></div><div>----</div><div><br></div><div><div>#lang scribble/base</div><div><br></div><div>@(require plot racket/math)</div><div><br></div><div>@title{Math 135 Assignment 1}</div><div>@section{First Test}</div><div><br></div><div>@(define ((deriv f) x)</div><div>  (/ (- (f x) (f (- x 0.001))) 0.001))</div><div>@(define (thrice f) (lambda (x) (f (f (f x)))))</div><div><br></div><div>@(define (x^2 x) (* x x))</div><div><br></div><div><br></div><div>@(parameterize ([plot-width    150]</div><div>                 [plot-height  150]</div><div>                 [plot-x-label  "xaxis"]</div><div>                 [plot-y-label  #f])</div><div>    (list (plot (function  x^2 (- pi) pi))))</div></div><div><br></div><div><br></div></div>