If I want to apply the courier font to a small piece of text in my file, how can I do that? I have searched around but can't seem to find information for the courier font.
Asked
Active
Viewed 2e+01k times
90
-
3By 'courier', are you actually referring to 'typewriter' (as part of the Computer Modern fonts, or to the specific mono-spaced font 'Courier'? – Werner Aug 03 '11 at 20:25
-
1I mean the specific mono-spaced font - Courier, that is typically used for programming code. – Joeblackdev Aug 03 '11 at 20:34
-
6Courier is a very wide font. There are further mono-space fonts available if you are free to choose. – Stefan Kottwitz Aug 03 '11 at 20:59
-
@Brent.Longborough Link appears broken. – HarryCBurn Feb 18 '15 at 16:21
-
@Iplodman Oops! I'd recommend Inconsolata – Brent.Longborough Feb 19 '15 at 21:02
2 Answers
118
Use the courier package. Consequently, the minimal example
\documentclass{article}
\usepackage{courier}
\begin{document}
This is not Courier font. \texttt{This is Courier font.}
\end{document}
produces

There is a marginal difference between the output generated via \texttt{...} with/without the courier package:
- Without
courierpackage:

- With
courierpackage:

Werner
- 603,163
57
Is \texttt{} what you are looking for?
\documentclass{article}
\begin{document}
Here is some \texttt{fixed width} text.
\end{document}
خالد حسني
- 22,859
Peter Grill
- 223,288
-
5There is a difference between the output generated via
\texttt{...}to what is produced when using thecourierpackage. – Werner Aug 03 '11 at 20:47 -
26Even though there's a difference, Peter's answer is a good addition. Most viewers, like me, come here for the
\textttoption as it is difficult to ask Google the question relevant to\texttt. – Shashank Sawant Jun 06 '14 at 04:09