The tick for 1.1 in the following plot is slightly lower than the actual value for 1.1. This becomes even more visible when adding an extra tick at 1.1. Is there a way I can have the ticks at the place that corresponds to their labels?
There is a related question (How to prevent rounded and duplicated tick labels in pgfplots with fixed precision?) but it only discusses how to get rid of wrong labels. I prefer if there was a way to keep the labels but have them at the correct position.
\documentclass[tikz]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.13}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
ymin=1,
ymax=1.2,
log ticks with fixed point,
ymode=log
]
\addplot
coordinates {(1, 1.1) (2, 1.1) };
\end{axis}
\end{tikzpicture}
\end{document}

