I'm using the standalone document class. Here is a minimal working example:
\documentclass{standalone}
\usepackage[siunitx]{circuitikz}
\begin{document}
Hello world
\end{document}
The problem lies with siunitx. Using any of the following preamble lines do not result in the extra whitespace:
\usepackage{tikz} % or
\usepackage{circuitikz}
But the following preamble lines result in the extra whitespace:
\usepackage[siunitx]{circuitikz} %or
\usepackage{siunitx}
The problem also appears when I draw figures in a circuitikz environment. Why is there extra whitespace to the left of the compiled PDF? How do I get rid of it?
