I am looking for a solution to create "poor man's condensed" with pdflatex. Here I found an answer that works with XeTeX, however it uses package fontspec, but I need something for pdflatex. And as in the referenced question, wrapping the condensed stuff with, say, \scalebox{0.9}[1] is not an option as I need the condensed text to allow linebreaking ...
In case it helps: I am using the mycrotypepackage anyway and from reading its documentation I understand that it uses ad hoc condensing and widening per line behind the scenes, so I guess something should be possible somehow.
\documentclass{article}
\def\textcondensed#1{\scalebox[0.9]{1}{#1}} % This is almost fine, except line breaking
\begin{document}
This is just some normal text, but the latin phrase
\textcondensed{lorem ipsum dolor sit amet}
that it contains is typeset in condesed.
\end{document}
otftotfmoffers an option--extendwhich you can set to a value below 1. – Stephan Lehmke Nov 25 '13 at 19:00ttfandotffonts. As the toolotftotfmused for this does almost all of the work and allows to "make" a condensed font by just adding an option, this wouldn't be a lot of work. – Stephan Lehmke Nov 25 '13 at 21:38