4

So, I'm working on making some cards, and they need to have nice, large, clear text. So I've set the text to be \LARGE. Then I was thinking, am I doing bad things to the font by over-enlarging it? It seems the size options in article only go up to 12pt, but should I be using 12pt and \Large instead? That seems to be roughly equivalent.

Are either of these the right way to get very large text for printing cards and such, if that is the majority of the text in my document, or should I be defining the text as large somewhere else?

6
  • 1
    PDF is vector. Shrink paper size, print big! coming to a printer near you :P
    – percusse
    Commented Nov 26, 2013 at 23:06
  • With both of these options you should be getting a 17pt font size, right? You could also issue the commands \fontsize{17}{20.5}\selectfont, I suppose.
    – Mico
    Commented Nov 26, 2013 at 23:07
  • 1
    @percusse But fonts are designed to be printed at a specific size, and changes are made to the font when moving from 10pt to 12pt; it isn't just a rescale on a good font, there are actual changes.
    – Canageek
    Commented Nov 26, 2013 at 23:07
  • 1
    sounded funnier before you dissected it , sad face
    – percusse
    Commented Nov 26, 2013 at 23:11
  • 1
    @Mico nevermind I failed.
    – percusse
    Commented Nov 26, 2013 at 23:49

1 Answer 1

6

10pt \LARGE is \newcommand\LARGE{\@setfontsize\LARGE\@xviipt{22}}

12pt \Large is \newcommand\Large{\@setfontsize\Large\@xviipt{22}}

which is the same thing.

But for a custom font for a custom use like your card example, there is not a lot of point in restricting yourself to the sizes based on magstep scaling of the original cm fonts.

Add \usepackage{fix-cm} (if you are using cm) so your fonts are scalable and then just use

\fontsize{18}{25}\selectfont

or whatever fits best.

2
  • I'm not using CM. Is there an easy way to play with this for other fonts?
    – Canageek
    Commented Nov 26, 2013 at 23:18
  • 1
    most other fonts are already available at any size so you can just use \fontsize as shown, no need for fix-cm Commented Nov 26, 2013 at 23:43

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .