I need to reduce the space between letters for some specific sentences. How is that done?
Thank you in advance,
S.
Text Formatting ⇒ How to change the space between letters?
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
How to change the space between letters?
Hi,
you could use the letterspacing feature of microtype together with pdfLaTeX. Here's a short example:
Stefan
you could use the letterspacing feature of microtype together with pdfLaTeX. Here's a short example:
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage[tracking=true]{microtype}
\begin{document}
\blindtext
\SetTracking[spacing={-50*,0*,50*}]{encoding=OT1}{-30}
\textls{\blindtext}
\blindtext
\end{document}
LaTeX.org admin