[Tex/LaTex] Initial ‘single quote’ is backwards – csquotes

csquotesfontspecpolyglossiaquotingxetex

Should I be using fontspec per Single quotes in csquotes
enter image description here ? My initial single quote faces the wrong way, latex thinks it's an apostrophe.

MWE: filename: mwe-singlequotes.tex

\documentclass[a4paper,hebrew,british,12pt]{report}
\usepackage{geometry,polyglossia,fontspec,csquotes,setspace}
\geometry{vscale=.85} %default is .7, bottom margin too big
\MakeOuterQuote{"}
\setmainlanguage[variant=british]{english}
\setotherlanguage{hebrew}
\newfontfamily\hebrewfont{Times New Roman}[Script=Hebrew]
\usepackage[notes,backend=biber,bookpages=false,doi=false,isbn=false,labeldate]{biblatex-chicago}
%makes block quotes single spaced
\newenvironment*{singlespcquote}
{\begin{spacing}{1}\quote}
{\endquote\end{spacing}}
\SetBlockEnvironment{singlespcquote}
\SetBlockThreshold{0}
\begin{document}
\section*{Initial 'single quote' is backwards}
\doublespace
I am having trouble with, "single quotes, said the 'latex user' to his     'friend.'"  
The first one is back wards.  \texthebrew{".הראשון הוא חזרה מחלקות"}  Oh no, I just discovered that Hebrew quotes are wrong.  Let me try this "\texthebrew{הוא}"  Ok, that's a 'stopgap'

\blockquote{I reached a point towards the end on the old heart where I had trouble getting out of a chair. All I wanted to do was get out of bed in the morning and walk to my office and sit back down in the chair. Now I throw 50 pound bags of horse feed in the back of my pickup truck and I don't even think about it. I'm back doing those things.}

Well I don't know when to use blockquote vs. displayquote.  Please don't try to fix my backward initial single quote by putting me on babel/pdflatex instead of polyglossia/xelatex.  I think I'm on csquotes insteads of quotes or quoting for a reason, but I don't know it any more.  This document compiles with \$latexmk -xelatex -f mwe-singlequotes.tex
\end{document}

Best Answer

Using "inverted" when you start a single quote part should work:

`text'

MWE:

\documentclass[a4paper,hebrew,british,12pt]{report}
\usepackage{geometry,polyglossia,fontspec,csquotes,setspace}
\geometry{vscale=.85} %default is .7, bottom margin too big
\MakeOuterQuote{"}
\setmainlanguage[variant=british]{english}
\setotherlanguage{hebrew}
\newfontfamily\hebrewfont{Times New Roman}[Script=Hebrew]
\usepackage[notes,backend=biber,bookpages=false,doi=false,isbn=false,labeldate]{biblatex-chicago}
%makes block quotes single spaced
\newenvironment*{singlespcquote}
{\begin{spacing}{1}\quote}
{\endquote\end{spacing}}
\SetBlockEnvironment{singlespcquote}
\SetBlockThreshold{0}
\begin{document}
\section*{Initial `single quote' is backwards}
\doublespace
I am having trouble with, "single quotes, said the `latex user' to his     `friend.'"  
The first one is back wards.  \texthebrew{".הראשון הוא חזרה מחלקות"}  Oh no, I just discovered that Hebrew quotes are wrong.  Let me try this "\texthebrew{הוא}"  Ok, that's a `stopgap'

\blockquote{I reached a point towards the end on the old heart where I had trouble getting out of a chair. All I wanted to do was get out of bed in the morning and walk to my office and sit back down in the chair. Now I throw 50 pound bags of horse feed in the back of my pickup truck and I don't even think about it. I'm back doing those things.}

Well I don't know when to use blockquote vs. displayquote.  Please don't try to fix my backward initial single quote by putting me on babel/pdflatex instead of polyglossia/xelatex.  I think I'm on csquotes insteads of quotes or quoting for a reason, but I don't know it any more.  This document compiles with \$latexmk -xelatex -f mwe-singlequotes.tex
\end{document}