The 2nd page of the .pdf file generated by the following .tex file:
\documentclass{beamer}
\usepackage{pgfplots}
\begin{document}
\begin{frame}
\framezoom<1><2>(0cm,5.5cm)(0.5cm,0.5cm)
\begin{tikzpicture}
\begin{axis}[%
axis x line=bottom,
axis y line=left,
ymin=0,
xtick=\empty,
ytick=\empty,
]
\addplot {1} ;
\end{axis}
\end{tikzpicture}
\end{frame}
\end{document}
points out a notch at axes intersection:
How could I get rid of this notch?
Note that this question is similar to:
- Bad intersection of lines in TikZ but is concerning more specifically
pgfplotsthantikz, - pgfplots: problem with "non-smooth" intersection of two lines' ends but is concerning axes instead of plot lines.




pgfplots. I will let Christian know. – Denis Bitouzé Aug 30 '16 at 16:08separate axis linesexplanation in the manual – percusse Aug 30 '16 at 16:23separate axis lines=falsedoesn't help in my case, maybe a new, meaningful, option could be added to get properly closed edges at axes intersection. – Denis Bitouzé Aug 30 '16 at 16:50