It is often recommended to include \usepackage[T1]{fontenc}, but I have been hit by the following difference:
\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}
texttt: \texttt{-->}
verb: \verb+-->+
\end{document}
Without fontenc both render the same -->. But with fontenc the first is rendered as ->.
Are there other such differences to expect?



\usepackage[scaled]{beramono}so before or after? (I cannot see any, but then...) – false Sep 16 '23 at 07:31beramonohas no “hyphen ligatures”, as far as I can see. Depending on your needs, you may want to disable the “guillements ligatures”, though. – egreg Sep 16 '23 at 08:49