(This article was first published on cameron.bracken.bz » R, and kindly contributed to R-bloggers)
This is one way to check for the version of PGF that is installed in an automated way. First create a tex file with the following contents:
\documentclass{article}
\usepackage{tikz}
\batchmode
\makeatletter
\typeout{PGFVersion=\pgfversion}
\@@end
\usepackage{tikz}
\batchmode
\makeatletter
\typeout{PGFVersion=\pgfversion}
\@@end
Say you named it test-pgf-version.tex. Then:
pdflatex test-pgf-version.tex
cat test-pgf-verson.log | grep PGFVersion | sed ‘s/PGFVersion=//’
cat test-pgf-verson.log | grep PGFVersion | sed ‘s/PGFVersion=//’
should display the version number. I happen to need to do this from R so using similar logic:
logFile <- ‘test-pgf-version.log‘
logContents <- readLines( logFile )
match <- logContents[ grep(‘PGFVersion=‘, logContents) ]
version <- gsub(‘[=A-Za-z-]‘,”,match)
print(version)
logContents <- readLines( logFile )
match <- logContents[ grep(‘PGFVersion=‘, logContents) ]
version <- gsub(‘[=A-Za-z-]‘,”,match)
print(version)
which accomplishes the same task as the second line above.
To leave a comment for the author, please follow the link and comment on his blog: cameron.bracken.bz » R.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series, trading) and more...

Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).