2

Consider the code

\documentclass[12pt]{book}
\usepackage[sfdefault]{cabin}

\begin{document} \thispagestyle{empty} \noindent How to slightly increase the spacing between a letter and Cabin's apostrophe? \end{document}

which produces

enter image description here

QUESTION: I would like to ever-so-slightly increase the space between (in the case of this MWE) the letter n and the apostrophe. It seems to me, when using the Cabin font, that spacing is relatively small. How may I do this for all such words where an apostrophe immediately follows a letter?

I am compiling with pdflatex.

Thank you.

DDS
  • 8,816
  • 4
  • 9
  • 36
  • https://tex.stackexchange.com/q/250233 is related. – Thérèse Jan 15 '23 at 00:50
  • @Thérèse Yes; but the solution is for compiling with xelatex, It would not work for pdflatex. There's at least one other post I'm aware of with a similar xelatex solution, as well. – DDS Jan 15 '23 at 01:43

1 Answers1

1

You can use \mbox{'} as apostrophe for Cabin font.

\documentclass[12pt]{book}
\usepackage[sfdefault]{cabin}

\begin{document} \thispagestyle{empty} \noindent How to slightly increase the spacing between a letter and Cabin\mbox{'}s apostrophe? \end{document}

enter image description here

Sebastiano
  • 54,118