0

I am trying to have " and " for my word but the output:

enter image description here

and i find this website:

enter image description here

I try to add \usepackage{textmode}

with using $\textquotedblleft$ Strawberry $textquotedblright$

But it give error below:

enter image description here

aan
  • 2,663
  • 2
    There is no standard package nemes textmode. Whay don't you use the \enquote command (package csquotes)? You can choose your style of quoting marks. – Bernard Dec 29 '19 at 17:49

3 Answers3

7

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} 

enter image description here

Bernard
  • 271,350
5

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}

gives

Vincent
  • 20,157
4

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}

enter image description here

cgnieder
  • 66,645