Text Formatting ⇒ Spacing issue with quotes
-
- Posts: 25
- Joined: Wed Oct 22, 2008 5:03 pm
Spacing issue with quotes
Hi,
I am typesetting an article using the phrase
``only if" and ``if"
There is an issue with the end quote if" being to close to the "f". I've already tried"
if\ \! - this separates the space between the i and the f.
I also tried ``if'' and that did nothing.
Any suggestions?
Thanks,
Peaches
I am typesetting an article using the phrase
``only if" and ``if"
There is an issue with the end quote if" being to close to the "f". I've already tried"
if\ \! - this separates the space between the i and the f.
I also tried ``if'' and that did nothing.
Any suggestions?
Thanks,
Peaches
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 many kinds of documents
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Spacing issue with quotes
Hi Peaches,
with
Stefan
with
\/
as separator, which actually means italic correction, it looks ok for me.Code: Select all
\documentclass{article}
\begin{document}
``only if\/" and ``if\/"
\end{document}
LaTeX.org admin
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Spacing issue with quotes
Do you know package csquotes? It sets quotation marks automatically, based on the language used.
Hint: You can click on »Open in witelatex« to see the output.
Try commenting package fontenc in and out and compare the differences.
Code: Select all
\documentclass{standalone}
\usepackage[T1]{fontenc}
\usepackage[autostyle=true]{csquotes}
\usepackage[french,german,english]{babel}
\begin{document}
\begin{tabular}{c}
``only if\/" and ``if\/" \\
\enquote{only if}\\
\selectlanguage{french}
\enquote{only if}\\
\selectlanguage{german}
\enquote{only if}\\
\end{tabular}
\end{document}
Try commenting package fontenc in and out and compare the differences.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.