General ⇒ Printing ` and ' literally problem
-
- Posts: 19
- Joined: Wed Jan 17, 2007 11:42 am
Printing ` and ' literally problem
even though I used \verb+`+ and \verb+'+ and \verb+"+
I end up getting the replacement ‘ ’ (left and right quote symbols)
Anyone know a way to get around this?
thanks.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Printing ` and ' literally problem
take a look at The Comprehensive LaTeX Symbol List. Skimming through it I found that the textcomp package offers \textasciigrave to obatin `
Code: Select all
\documentclass{article}
\usepackage{textcomp}
\begin{document}
\textasciigrave
\end{document}