I am running pdftex from command line and the images are getting clipped. When I run the same commands from a saved tex file, no clipping occurs. I have attached the commands and rendered outputs also available (if you bump up my reputation points I can upload them). I do not see any unusual differences in the log files.
This seems like a bug and pdftex's tracking system would not let me register to file a bug (http://foundry.supelec.fr/gf/project/pdftex/).
Can some please confirm this as bug, recommend how I can report it, and perhaps provide a workaround. I am trying to render a circuitikz via commandline.
:: PDF from Files
pdflatex -interaction=nonstopmode -halt-on-error -jobname circuit_file circuit.tex circuit.pdf
:: PDF from String
pdflatex -interaction=nonstopmode -halt-on-error -jobname circuit_string \documentclass[class=minimal,border=4pt]{standalone} \usepackage{tikz} \usepackage{circuitikz} \usepackage{siunitx} \pagestyle{empty} \begin{document} \begin{circuitikz}[european]\draw(0,0) to [V, v=$V_1$, i_=$I_1$] (0,2)to [R, l^=${R_1}$] (2,2)to [R, l^=${R_2}$, v^<=$V_2$] (2,0) -- (0,0); \end{circuitikz} \end{document}

class=minimal, which is wrong. – egreg Jan 20 '13 at 19:07standaloneI really agree with @egreg here about not using theminimal"class". See also Why not use the minimal class. – Martin Scharrer Jan 22 '13 at 06:58