I have a tex document made up of many tex files. Each figure I prepare is in it's own tex file. Specifically, this file would contain the figure environment, centering requests, the panel of subfloats and labels, and the figure caption.
I use tikz to overlay figure numbers and scalebars and other annotations because it makes for highly reproducible, well aligned annotations that are easily customized. Rather than repanel this figure with photoshoped labels and scale bars I'd like to export this paneled figure. Since saving a tikz figure is really quite complex (there are several questions on this site that I have never successfully implemented) I would settle for creating a new main tex document that create a pdf of only the specified figure using input of the same tex file the figure was assembled in.
This is all easily enough but I would like this second file to ignore the captions. Note, separating the figure calls and captions are not a convenient option.
Can I import the caption package, then redefine it to ignore it and gobble the white space between the figure and the now omitted caption so my pdf is as tightly cropped to the figure as possible?
A MWE of a sample figure tex file:
\begin{figure}
\begin{center}%
\subfloat{\includegraphics[keepaspectratio,width=0.3\textwidth]{example-image-a}}\hspace{3 mm}
\subfloat{\includegraphics[keepaspectratio,width=0.3\textwidth]{example-image-a}}\hspace{3 mm}
\subfloat{\includegraphics[keepaspectratio,width=0.3\textwidth]{example-image-a}}\hspace{3 mm}
\LineSep
\subfloat{\includegraphics[keepaspectratio,width=0.3\textwidth]{example-image-a}}\hspace{3 mm}
\subfloat{\includegraphics[keepaspectratio,width=0.3\textwidth]{example-image-a}}\hspace{3 mm}
\subfloat{\includegraphics[keepaspectratio,width=0.3\textwidth]{example-image-a}}\hspace{3 mm}
\caption[NO LIST OF FIGURES OR LEGEND EXPECTED]{%
\label{fig:Sample}
General summary statement / figure title:
With a small caption here describing the content of (A) through to (F).
}
\end{center}
\end{figure}
This file may be called from a main MWE document (in one version there would be the entire document assembly, and the other would contain a block of code to tell the document to skip the captions):
\documentclass{article}
\usepackage{xparse} % can exclude expl3, xparse loads it
\usepackage{xpatch} % can exclude etoolbox, xpatch loads it
\usepackage{graphicx}
\usepackage[format=hang,singlelinecheck=0,font={sf,small},labelfont=bf]{subfig}
%http://tex.stackexchange.com/questions/75014/is-it-possible-to-make-a-reference-to-a-subfigure-to-appear-figure-2a-with-cle
\captionsetup[subfigure]{subrefformat=simple,labelformat=simple,listofformat=subsimple}
\renewcommand\thesubfigure{\Alph{subfigure}}
\pagestyle{empty}
\DeclareDocumentCommand{\LineSep}{O{5mm}}{\par\vspace*{\dimexpr-\baselineskip+#1}}
\begin{document}
\input{FigureDoc.tex}
\end{document}
\begin{center}instead of\centering? – Werner Oct 31 '16 at 23:28\caption[.]{..}as well as the preceding white-space? – Werner Oct 31 '16 at 23:29