Is there a way to tweak the figure environment so that it will prefix captions with some text other than Figure followed by auto-numbering? For argument's sake have (1) two types of caption prefixes, Diagram and Problem, (2) each with their own auto-numbering. So there are two questions.
\documentclass{article}
% RN. 8 Feb 2019
%=======================
\usepackage{xparse}
\usepackage{xskak}
\begin{document}
\begin{figure}
\centering
\notationon
\chessboard[showmover=false,setfen={rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w - - 0 1}]
\notationoff
\caption{Starting Position}
\label{}
\end{figure}
\begin{figure}
\centering
\notationon
\chessboard[showmover=false,setfen={4k3/8/4b3/r7/7p/8/8/2K1Q2n b - - 0 1}]
\notationoff
\caption{}
\label{}
\end{figure}
\begin{figure}
\centering
\notationon
\chessboard[showmover=false,setfen={2K4Q/5R2/8/3b1N2/5kN1/8/P7/b7 b - - 0 1}]
\notationoff
\caption{}
\label{}
\end{figure}
\end{document}


captionhas\captionsetupwith a lot of options... – Feb 08 '19 at 12:34\fenboardI could have sworn they turn thefileandranklabels on/off. But you are right, here they serve no purpose. So, out they will go. – Reinhard Neuwirth Feb 08 '19 at 12:55\fenboard,\notationon,\showboardare commands from skak (loaded by xskak).\chessboardis from the chessboard package. It has its own options to configure labels. – Ulrike Fischer Feb 08 '19 at 12:59\chessboardcommand without having to load thechessboardpackage. I suppose it too is loaded withxskak. – Reinhard Neuwirth Feb 08 '19 at 13:54memoirclass provides means of doing this, also for corresponding new "List of ...". – Peter Wilson Feb 09 '19 at 19:26tableenvironment just like they are shown in thefigureenvironment, so this solved my problem for two floats. I'll thememoirclass in mind though. – Reinhard Neuwirth Feb 10 '19 at 19:46