0

I'm using the mathpazo package so I can set arbitrarily large font sizes for a poster. I set my font sizes in the preamble as such:

\renewcommand{\normalsize}{\fontsize{36pt}{48pt}\selectfont}
\renewcommand{\large}{\fontsize{64pt}{100pt}\selectfont}

But when I use \large, the line space is 48pt not 100pt as it should be (note that 100pt is not the actual value I want on my poster, this is just for demonstration purposes here).

If I change the line space value of \normalsize to 100pt, then when I use \large the line space is 100pt.

Complete code:

\documentclass[letterpaper]{article}

\usepackage[utf8]{inputenc}

\usepackage[letterpaper,top=2cm,bottom=2cm,right=2cm,left=2cm]{geometry}
\pagenumbering{gobble}
\setlength{\parindent}{0cm}
\linespread{1}

\usepackage{mathpazo}
\renewcommand{\normalsize}{\fontsize{36pt}{48pt}\selectfont}
\renewcommand{\large}{\fontsize{64pt}{100pt}\selectfont}

\begin{document}

test 1 test 2 test 3 test 4 test 5 test 6 test 7 test 8 test 9

{\large test 1 test 2 test 3 test 4 test 5 test 6 test 7 test 8 test 9}

\end{document}

Resulting document:

output document

But if I use:

\renewcommand{\normalsize}{\fontsize{36pt}{100pt}\selectfont}
\renewcommand{\large}{\fontsize{64pt}{100pt}\selectfont}

I get:

output document

Hmmm...

lockstep
  • 250,273
magyar
  • 43

0 Answers0