From the floatrow package, I am using the floatfoot command to reference sources and similar content.
This MWE produces an output that is quite acceptable:
\documentclass{article}
\usepackage{xcolor}
\usepackage{floatrow}
\floatsetup[figure]%
{%
capbesideposition=right,%
postcode=rule,%
}%
\setlength{\floatfootskip}{0pt}%remove vertical space/skip
\usepackage{caption}
\DeclareCaptionFont{ftfont}{\scriptsize\raggedleft}
\captionsetup[floatfoot]
{%
footfont=ftfont,%
}%
\begin{document}
\begin{figure}
\ffigbox[\FBwidth]
{%
\rule{5cm}{5cm}
}%
{%
\caption{None}%
\floatfoot{Floatfoot}%
}%
\end{figure}
\begin{figure}
\fcapside[\FBwidth]
{%
\rule{5cm}{5cm}
}%
{%
\caption{None}%
\floatfoot{Floatfoot}%
}%
\end{figure}
\begin{table}
\ttabbox
{%
\caption{None}%
\floatfoot{Floatfoot}
}%
{%
\begin{tabular}{ll}
\hline
Number & Name\\
2 & Fred\\
\hline
\end{tabular}
}%
\end{table}
\end{document}
It looks like this:
The Table is inserted for good measure, it looks good as-is. I am concerned about the figures.
I have not been able to find information in the package doc about modifying the floatfoot. Its positional commands (default, caption, bottom) are not what I am looking for.
Additionally, the horizontal rule underneath the float is a nice touch in my mind.
As a first step, is there a way to place this rule from
postcodeabove thefloatfoot? This cannot be that hard, however I failed. Fiddling withmidcodeetc. did not solve it.Secondly, a much more advanced question. It might not be reasonable. Is there a way to mold the
ruleandfloatfootinto something like this:
Excuse the sketch.



\footnotetextinstead of\floatfoot? – Hafid Boukhoulda Feb 13 '19 at 17:01\footnotetextdoes exactly. Is it not bound to also having a footnote-mark?floatrowmakes a distinction there, and offers footnotes but also\floatfoot, for additional, arbitrary explanations. I thought it would fit for my intentions. This question showcases the difference nicely. – Alex Povel Feb 13 '19 at 17:21