\subcaptionphantom is nice when the subfigures are marked on a single figure, but the subcaption package is not allowed at memoir's house today.
Thus a solution was made:
memoir label and ref subfigures inside bigger image
This however leaves a large amount of whitespace around the figure:
\documentclass{memoir}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage{duckuments}
\newsubfloat{figure}
% =============== defining the \subcaptionphantom ===================================
\makeatletter
% \begin{macro}{\subcaptionphantom}
% \cs{subcaptionphantom}\oarg{list-entry}\marg{caption} is a hidden
% non-printed subcaption. Designed for the case if "(a)", "(b)" are
% already embedded in the figure itself.
% Roughtly equivalent to \cs{phantomsubcaption} from the \Lpack{subcaption} package.
%
% \begin{macrocode}
\newcommand{\subcaptionphantom}{%
\bgroup
\let\label=\memsub@label
\ifdonemaincaption\else
\advance\csname c@\@captype\endcsname\@ne
\fi
\refstepcounter{sub\@captype}\@contkeep
\@ifnextchar [%
{\@memsubcapphantom{sub\@captype}}%
{\@memsubcapphantom{sub\@captype}[\@empty]}}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@memsubcapphantom}
% Quick-and-dirty analog of \Lpack{memoir} \cs{memsubcap}, adapted
% for use in \cs{subcaptionphantom}.
% \begin{macrocode}
\long\def\@memsubcapphantom#1[#2]#3{%
\@tempdima=\hsize
\vskip\subfloatcapskip
\ifx \@empty #2
\@memsubcaptionphantom{#1}{#3}{#3}%
\else
\@memsubcaptionphantom{#1}{#2}{#3}%
\fi
\vskip\subfloatcapskip
\egroup}
% \end{macrocode}
% \end{macro}
%
%
% \begin{macro}{\@memsubcaptionphantom}
% Quick-and-dirty analog of \Lpack{memoir} \cs{memsubcaption}, adapted
% for use in \cs{memsubcapphantom}.
% \begin{macrocode}
\newcommand{\@memsubcaptionphantom}[3]{%
\ifx \relax#2\relax \else
\bgroup
\let\label\@gobble
\let\protect\string
\def\@memsubcaplabel{\@nameuse{@@the#1}}%
\xdef\@memsubfigcaptionlist{%
\@memsubfigcaptionlist,%
{\protect\numberline{\@memsubcaplabel}\noexpand{\ignorespaces #2}}}%
\egroup
\fi
\@makesubfloatcaptionphantom{\@nameuse{@the#1}}{#3}%
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@makesubfloatcaptionphantom}
% Quick-and-dirty analog of \Lpack{memoir} \cs{makesubfloatcaption}, adapted
% for use in \cs{memsubcaptionphantom}.
% \begin{macrocode}
\newcommand{\@makesubfloatcaptionphantom}[2]{%
\setbox\@tempboxa\hbox{%
\@subcapsize
{\phantom{\@subcaplabelfont#1}}{\ignorespaces #2}\unskip}%
\@tempdimb=-\subfloatcapmargin
\multiply\@tempdimb\tw@
\advance\@tempdimb\@tempdima
\hb@xt@\@tempdima{%
\hss
\ifdim \wd\@tempboxa >\@tempdimb
\phantom{\memsubfig@caption{#1}}{#2}%
\else
\if@shortsubcap
\phantom{\memsubfig@caption{#1}}{#2}%
\else
\box\@tempboxa
\fi
\fi
\hss}}
% \end{macrocode}
% \end{macro}
\makeatother
\begin{document}
\chapter{duck}
\lipsum[1-4]
\begin{figure}[h]
\centering
% \vspace{-4cm}
\subcaptionphantom{\label{a}}~%
\subcaptionphantom{\label{b}}~%
\subcaptionphantom{\label{c}}~%
\subcaptionphantom{\label{d}}~%
\subcaptionphantom{\label{f}}~%
\subcaptionphantom{\label{g}}~%
\includegraphics{example-image-duck}
\caption{Some figures.
A figure named \subcaptionref{a}.
A figure named \subcaptionref{b}.
A figure named \subcaptionref{c}.
A figure named \subcaptionref{d}.
A figure named \subcaptionref{f}.
A figure named \subcaptionref{g}.
}
\label{duck}
\end{figure}
\lipsum[5-10]
\end{document}
So far my solution has been the outcommented \vspace{-4cm} but that's imprecise and impractical. Is there a better way of removing the whitespace

~before the%'s – daleif May 29 '19 at 09:11\subcaptionphantombroke when adding~%after it. – Thorbjørn E. K. Christensen May 29 '19 at 09:42