If we compare these three text lines
Linné's naming scheme.
{Linné'}s naming scheme.
{{Linné}'}s naming scheme.
typeset them in MinionPro, and look at the final pdf

we note that only the last line leads to a barely acceptable result. The reason: MinionPro has wrong apostrophe kerning settings. (In fact, the settings are so bad that languages with many apostrophes, such as French, cannot be typeset with the standard MinionPro package at all.)
The best solution would be to improve MinionPro. But the package is not maintained, unfortunately. There exists an underground apostrophe-friendly version of MinionPro, but it is a hack.
Is there a way to adjust the kerning of the apostrophe within a latex macro? (I use the dvi-ps-pdf route, with MinionPro and microtype, pdflatex and texlive 2014; the fonts are .pfb, thus NOT opentype, but postscript.)
I tried the suggestion
\SetExtraKerning
[ unit = space ]
{ encoding = {OT1,T1,LY1} }
{
' = {3000, }
}
but with no success.
P.S A minimal example is this:
\documentclass{book}
\usepackage[OT1,T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{MinionPro}
\usepackage[british]{babel}
\usepackage{microtype}
\begin{document}
Linné's naming scheme.
{Linné'}s naming scheme.
{{Linné}'}s naming scheme.
\end{document}
P.P.S. There is a related, but smaller issue with the kerning of the glyph " (double quote) in MinionPro.

