I am trying to have " and " for my word but the output:
and i find this website:
I try to add
\usepackage{textmode}
with using
$\textquotedblleft$ Strawberry $textquotedblright$
But it give error below:
Here is how it can be done with csquotes:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{csquotes}
\begin{document}
\enquote{Strawberry Fields Forever}
\setquotestyle{french}
\enquote{La Folle Complainte}
\end{document}
It's only because textmode is not a package. Detexify only indicates you that the command \textquotedblleft can be used directly in normal text mode. For example,
\documentclass{article}
\begin{document}
\textquotedblleft Strawberry\textquotedblright
\end{document}
"? I tried \textquotedblleft Strawberry\textquotedblright is very sweet., but no space after strawberry word.
– aan
Dec 30 '19 at 02:37
You don't need \textquotedblleft and \textquotedblright for quote marks (or the csquotes package for that matter, despite it being very useful in many cases):
\documentclass{article}
\begin{document}
``Strawberry''
\end{document}
textmode. Whay don't you use the\enquotecommand (packagecsquotes)? You can choose your style of quoting marks. – Bernard Dec 29 '19 at 17:49