I'm writing a little document on LaTeX to explain how to type LaTeX to some of my fellow colleagues. What's giving me a headache are double quotes.
As an alternative to \textquotedblleft text \textquotedblright, I wanted to show them `` text ''.
Unfortunately, verbatim beautifies the symbols, so they are not keyboard-like. Which is what I want.
I have tried opening with \ ` (twice) and closing with \textquotesingle (twice too).
(See what I mean in WME below.) That gets the proper outcome... despite non-fatal compiling errors.
\documentclass[]{article}
\usepackage{verbatim}
\begin{document}
\textbackslash textquotedblleft method that works \textbackslash textquotedblright
`` the outcome is good, but there are errors \textquotesingle\textquotesingle
\begin{verbatim}
`` verbatim does not show the actual symbols ''
\end{verbatim}
\end{document}
Any help would be appreciated.


\usepackage{upquote}for verbatim. – Ulrike Fischer Feb 10 '24 at 12:16https://tex.stackexchange.com/questions/410434/is-there-upquote-like-package-for-main-text-and-not-just-verbatim-text Solves my one-time issue nicely and without any aditional packages or new settings, which is just perfect. – Laura F. Feb 10 '24 at 13:48