I am working with a designer that requires the height of the font type we are using to be stretched by a factor of 1.2. I have succeeded doing so using the adjustbox package, as described in the post Stretching text vertically
I have however two questions with this approach:
I would like to set this globally, to all text in the document. I was wondering what would be the way to make this behaviour propagate in such manner?
When using the adjustbox approach the text overflows the margins of the document. Is there any way to prevent it from doing so and respect the margins?
Here I add an example of what I mean:
\documentclass{article}
\usepackage{adjustbox}
\usepackage{blindtext}
\begin{document}
% "stretch" the font by a factor of 1.2
\adjustbox{scale={1}{1.2}}{\blindtext}
\end{document}
\adjustboxcalled? – Mico Aug 22 '18 at 14:30