The bounding box for the following image is wrong (even though I've tried to set it)
\documentclass{article}
\usepackage[margin=0.25in]{geometry}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{tkz-euclide}
\pagestyle{empty}
\begin{document}
\begin{tikzpicture}[every node/.style={circle,inner sep=2pt,fill}]
\coordinate (A) at (0,0);
\coordinate (B) at (2.5in,0);
\coordinate (mAB) at ($(A)!0.5!(B)$);
\coordinate (uAB) at (mAB) ++ (0,1);
\tkzInterCC[R](A,2.75in)(B,2.75in)
\tkzGetPoints{C}{D}
\draw (A) -- (B) -- (C) -- cycle;
\node at (A) {};
\node at (B) {};
\node at (C) {};
\node[fill=none] at ($(A)+(-90:2ex)$) {$N$};
\node[fill=none] at ($(B)+(-90:2ex)$) {$M$};
\node[fill=none] at ($(C)+(+90:2ex)$) {$Q$};
\coordinate (D) at ($(A)!2.15!(C)$);
\draw (A) -- (D);
\coordinate (offset) at (0.25,0.25);
\path [use as bounding box] ($(A)-(offset)$) rectangle ($(D)+(offset)$);
\draw (current bounding box.north east) rectangle (current bounding box.south west);
\end{tikzpicture}
\end{document}
use as bounding boxdid not have an effect. – A.Ellett Sep 23 '13 at 18:20