In movies and on military issues one can see stencil letters. Although I don't want to write a whole text in this style I am asking myself if there is a LaTeX package for writing in military stencil letter style?
2 Answers
As noted in the comments to the question, there are many, many military stencil fonts freely available online. Once you've downloaded one you like, you can load it using the fontspec package and compile the .tex file with xelatex or lualatex instead of pdflatex.
In the example below, I've used a freely available font and used fontspec's \newfontfamily command to load it so that anything in the scope of \stencil (you could use any name for it you like) will be in that font. Everything else will be in the font loaded with the \setmainfont command.
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Georgia}
\newfontfamily\stencil{AmarilloUSAF}
\begin{document}
Normal text
{\stencil Stencil text}
\end{document}

- 4,158
Here's a solution with Plain XeTeX needing no packages. Once you have a suitable font installed1, it can be used directly in the plain format:
\font\stencil="OctinStencilRg-Regular"
Some stencil text: {\stencil M*A*S*H}\bye

1 The font used here is freely available, but any OpenType stencil font will do.
- 29,607
-
-
2
-
1MCF = minimal code fragment... or maybe MWE = minimally written excerpt. – Steven B. Segletes Apr 30 '15 at 13:39
-
The 2 lines above are really a MWE for plain, just run xetex (not XeLaTeX) on it and you will see. – eudoxos Sep 21 '18 at 12:30
contourpackage that might create the effect you want. – DJP Apr 30 '15 at 01:01