I'm new to stackexchange, and did not find any information about this issue. I encounter an error whenever I try to use the TikZ's externalize along with (unrelated to TikZ pictures-) \linegoal. My engine is MikTeX on Win7 with TeXstudio. As soon as the linegoal package is used along with externalize, linegoal throws an error:
! Package linegoal Error: \linegoal does not work if output file are disabled
(linegoal) please check the value of \if@filesw!.
A MWE is:
\documentclass[11pt]{article}
\usepackage{linegoal}
\usepackage{tikz}
\usetikzlibrary{external}
\tikzexternalize
\begin{document}
\begin{tikzpicture}
\draw (0,0) -- (1,1);
\end{tikzpicture}
\parbox[t]{\linegoal}{test}
\end{document}
Does anyone have an idea on how to solve that?