Is there an easy way to do single smart quotes?
I'm currently trying \usepackage[autostyle]{csquotes} but:
1. Doesn't give smart quotes, just straight lines;
2. Words immediately following the right quote don't seem to get a leading space (so the code below renders like; like 'quoting this'following ...).
Code: Select all
\textquotesingle quoting this\textquotesingle following word here
Thank you
preamble etc:
Code: Select all
\documentclass{scrartcl}
\usepackage{float}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{appendix}
\usepackage{braket}
\usepackage{fancyvrb}
\usepackage{graphicx}
\usepackage{listings}
\usepackage{pdfpages}
\usepackage{tikz}
\usepackage{mathrsfs}
\usepackage{eufrak}
\usepackage{yfonts}
\usepackage{lmodern}
\usepackage{principia}
\usepackage[english]{babel}
\usepackage[autostyle]{csquotes}
\usepackage{changepage}
\usetikzlibrary{trees}
\usetikzlibrary{babel}
\usepackage{verbatim}
\setcounter{secnumdepth}{5}
\setcounter{secnumdepth}{5}
\lstset{language={[LaTeX]TeX},
escapeinside={{(*@}{@*)}},
gobble=0,
stepnumber=1,numbersep=5pt,
numberstyle={\footnotesize\color{gray}},%firstnumber=last,
breaklines=true,
framesep=5pt,
basicstyle=\small\ttfamily,
showstringspaces=false,
keywordstyle=\ttfamily\textcolor{blue},
stringstyle=\color{orange},
commentstyle=\color{black},
rulecolor=\color{gray!10},
breakatwhitespace=true,
showspaces=false,
backgroundcolor=\color{gray!15}}
%------------------------------------------------------------
% Theorem like environments
%
\newtheorem{theorem}{Theorem}
\theoremstyle{plain}
%more of this stuff
\numberwithin{equation}{section}
\providecommand{\versionnumber}{0.0}
\newcommand*{\titleGM}{\begingroup
\hbox{
\hspace*{0.2\textwidth}
\hspace*{0.05\textwidth}
\parbox[b]{0.75\textwidth}{
{\noindent\huge\bfseries Great title } \vspace*{0.5cm} \newline
{\noindent\huge\bfseries yup}\\[2\baselineskip]
{\normalsize \textit{More title}}\\[4\baselineskip]
{\Large \textsc{Author name}}
\newline \newline \newline \newline \newline \newline
\newline \newline \newline \newline \newline \newline
\newline \newline \newline \newline \newline \newline
\newline \newline \newline \newline \newline \newline
\newline \newline \newline \newline \newline \newline
{\noindent \copyright\ date name} \newline
\newline %\newline
{\noindent Version \versionnumber} % Publisher and logo
}}
\endgroup}
\listfiles
\begin{document}
\pagenumbering{gobble}
\begin{titlepage}
\titleGM
\thispagestyle{empty}
\end{titlepage}
% put some text here but deleted ...
\newpage
\addtocontents{toc}{\protect\enlargethispage{\baselineskip}}
{\small \tableofcontents}
\newpage
\pagenumbering{arabic}
\section{my first section}
\textquotesingle quoting this\textquotesingle following word here
\section{final section}
that's all
\end{document}