7

How to change the direction of quote mark in latex? Both of them are in same direction. How to have one in opposite direction?

enter image description here

\documentclass[12pt,a4paper,oneside,onecolumn]{iiscthes}
\usepackage{graphicx}
\usepackage{chapterbib}
\pagestyle{bfheadings}
\title{Introduction}
\date{} 
\begin{document}
\chapter{Introduction}
\section{One}
\subsection{One-One}
\textbf{''More--than--Moore"}
\end{document}
Andrew Swann
  • 95,762
user87834
  • 763

2 Answers2

13

Use the ` key twice, instead of double quotes, i.e.

``More--than--Moore''

It is on the same key as ~ on American keyboards.

jak123
  • 4,252
  • 5
  • 26
  • 49
SSL
  • 312
-2

A work-around (though I'm sure some will criticize) is to use reflectbox

\reflectbox{''}More-than-More''

  • 2
    This doesn't orient the open quotes correctly. The orientation would be correct if they were rotated 180 degrees, but that's still not the right way to do it. – barbara beeton Feb 18 '22 at 22:28