Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
% a routine to underline the text you are printing
/ushow % linethick lineposition (string) ushow -
{ % underlines text
% call this (ushow) instead of show when placing text
% and the text will be underlined.
% pass line thickness and offset with string
% ie 0.1 -0.8 (Text) ushow
% draws a line 0.1 thick and 0.8 below (-0.8) text position
% ie. 10 10 moveto 0.1 -0.8 (Text) ushow
gsave
exch 0 exch rmoveto
dup stringwidth rlineto
exch setlinewidth stroke
grestore
show
} bind def