In latex, I can change the overall font size of my document in the \documentclass
line.
\documentclass[11pt]{lncs}
\begin{document}
....
\end{document}
How can I change the font size of my document using Scribble?
One possibility is to use exact
and insert latex code to change the font:
(define (exact . items)
(make-element (make-style "identity" '(exact-chars))
items))
But the problem is that the font is specified on on the \documentclass
line, which is generated by scribble.
So is there any way to either set the font size from within scribble, or use some latex package to change the font size after the \documentclass
line?