The following is a MWE
\documentclass[xcolor=dvipsnames]{beamer}
\usepackage{pgf,tikz}
\usetikzlibrary{arrows}
\begin{document}
\begin{frame}
\begin{tikzpicture}[line cap=round,line join=round,>=triangle 45,x=0.695cm,y=0.685cm]
\clip(-1.72,-5.46) rectangle (21.28,5.38);
\draw (3.54,1.5) ellipse (2.02cm and 2cm);
\draw (8.24,1.82) ellipse (2.11cm and 2.08cm);
\end{tikzpicture}
\begin{itemize}
\item $B_\alpha$
\end{itemize}
\end{frame}
\end{document}
On compiling the above tex, we see that there is a huge gap between the tikzpicture and the text. How to reduce this gap?
I am not so familiar with tikzpicture. Any help and suggestions?
\clip? That seems to cause the huge gap. – TeXnician Mar 16 '17 at 05:31\drawinstead of\clipyou can see the clip. Tune it and then turn it into\clipagain. Of course you can just leave out the clip and center thetikzpicture. – Mar 16 '17 at 05:31\clip. Once atikzpictureis finished, its bounding box is adjusted to fit all used coordinates, visible or not. Sometimes we need to adjust the bounding box, but not in this particular case. – Ignasi Mar 16 '17 at 08:10