Atualizar
O erro ocorre apenas se eu alterar as próprias imagens ou inserir/excluir uma imagem que ocorre antes delas no documento. Como solução alternativa, defini um comando \newcommand{\subcaptionfix}[1]{#1}
que envolvo os comandos da subcaptionbox (incluindo o primeiro argumento). Se eu precisar alterar alguma coisa, simplesmente removo o #1
para que o LaTeX ignore o comando. Depois posso colocá-lo de volta.
Uma solução adequada para o problema seria melhor, mas ainda estou tendo dificuldades para reproduzir o erro de uma forma um tantomínimoexemplo. Talvez eu faça isso em algumas semanas, quando tiver mais tempo.
Eu uso subcaption
o comando ' \subcaptionbox
duas vezes em uma figura. Em cada um subcaptionbox
coloco uma TikZ
foto. Isso funciona bem, desde que eu não altere nenhuma das fotos. Assim que eu altero, recebo o seguinte erro:
! Package tikz Error: Sorry, the system call 'pdflatex -shell-escape -halt-on-e
rror -interaction=batchmode -jobname "msc-preliminary-figure0" "\def\tikzextern
alrealjob{msc-preliminary}\input{msc-preliminary}"' did NOT result in a usable
output file 'msc-preliminary-figure0' (expected one of .pdf:.jpg:.jpeg:.png:).
Please verify that you have enabled system calls. For pdflatex, this is 'pdflat
ex -shell-escape'. Sometimes it is also named 'write 18' or something like that
. Or maybe the command simply failed? Error messages can be found in 'msc-preli
minary-figure0.log'. If you continue now, I'll try to typeset the picture.
See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
l.59 \end{tikzpicture}}
This error message was generated by an \errmessage
command, so I can't give any explicit help.
Pretend that you're Hercule Poirot: Examine all clues,
and deduce the truth by order and method.
LaTeX Font Info: Font shape `FMX/futm/m/n' will be
(Font) scaled to size 6.99199pt on input line 1.
LaTeX Font Info: Font shape `U/futm/m/n' will be
(Font) scaled to size 6.99199pt on input line 1.
LaTeX Font Info: Font shape `T1/futs/bx/n' in size <10> not available
(Font) Font shape `T1/futs/b/n' tried instead on input line 59.
===== Image 'msc-preliminary-figure1' is up-to-date. ======
) [5]pdfTeX warning (ext4): destination with the same identifier (name{equation
.2.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.45 \end{align}
[6pdfTeX warning (ext4): destination with the same identifier
(name{equation.2.2}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.59 \end{align}
<./msc-preliminary-figure1.pdf>]
using subcaption
o ambiente de subfigure
não causa um problema semelhante, mas as imagens não estão alinhadas horizontalmente devido aos diferentes comprimentos de legenda. Além disso, se eu excluir o \subcaptionbox
comando, fizer as alterações e inseri-las novamente, funcionará perfeitamente.
Tentei produzir um exemplo mínimo, mas o problema é que não consegui reproduzir o erro. Se isso for relevante: eu uso \usepgfplotslibrary{external}
e \tikzexternalize
. Minha estrutura de arquivos é assim:
Documento principal
\input{preamble.tex}
%... title and so on
\input{chapter1.tex}
\input{chapter2.tex}
%...
\input{chapterN.tex}
\input{appendix.tex}
Capítulo 2: capítulo2.tex
%...text
\begin{figure}
\input{figurefile.tikz}
\caption[short]{long}
\label{fig:foobar}
\end{figure}
%...text
Figura: figurefile.tikz
\subcaptionbox{first subcaption\label{fig:foo}}{
\begin{tikzpicture}
%...picture
\end{tikzpicture}}
\hfill
\subcaptionbox{second subcaption\label{fig:bar}}{
\begin{tikzpicture}
%...picture
\end{tikzpicture}}
Já aconteceu algo assim com alguém antes?