I have a student with a visual impairment who needs a large-print version of the upcoming exam. This involves not only a larger font size but a total rescaling of the whole thing, including diagrams. Naturally a consequence of this is that the pagination will need to be completely redone (the exam is supposed to be on normal-sized paper). What is the simplest way to do this? (Best-case scenario would be a package with a command like \begin{large-print} that takes care of everything automatically but that seems unlikely.)
Asked
Active
Viewed 546 times
8
mweiss
- 281
1 Answers
4
If you don't want to redo everything and have the ability to print on double page paper (A3 in Europe), you can enlarge the whole pages with the command :
\usepackage{pgfpages}
\pgfpagesuselayout{resize to}[a3paper]
In the opposite case, or if you should keep the " normal-sized paper" you can have a try on the extsizes package which allows to write:
\documentclass[a4paper,17pt]{extarticle}
For the figures, it is more intricate, because it depends on their format, size and aspect ratio.
-
Note that
extsizedoes not support theexamclass (although it is not clear whether @mweiss uses that). – Marijn Jul 10 '18 at 13:42 -
@Marjin. I agree, it is not clear. As a teacher, I never use this class or package but my own defined class based on
article, which also works withextsizepackage. – Jhor Jul 10 '18 at 15:07
\footnotesizeinto\normalsize,\normalsizeinto\Large, etc. – Marijn Jul 10 '18 at 13:44