TeXShop ⇒ Problem with tt typeface
Problem with tt typeface
I can't get the typewrite typeface working in TeXShop. The error message says it can't load the pcrr7t font. What's that and how do I load it?
Thanks!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Problem with tt typeface
Problem with tt typeface
Thanks for your answer! I'm still trying to find my way around LaTeX... The problem turned out to be the times package, which I was using for Times New Roman. So I switched to the mathptmx package, which doesn't seem to work with the amsart document class. Why is that? It works fine if I switch to \documentclass{article}.
Code: Select all
\documentclass{amsart}\usepackage{mathptmx}\begin{document}\begin{itemize}\item hello\begin{itemize}\item \tt Courier text\end{itemize}\end{itemize}\end{document}
Problem with tt typeface
However, that is most likely not your problem, since your sample works for me even if I change mathptmx back to times. I would guess that either there is something wrong with your postscript font package installation -- reinstalling the psnfss package might help -- or you're using the wrong font encoding, and changing it with the fontenc package, e.g., \usepackage[T1]{fontenc}, might help.