[Tex/LaTex] hvFloat: caption above and note below the object.

captionsnotespositioning

Using:

\hvFloat[%
floatPos=p,%
capWidth=1.3,%
capPos=b,%
rotAngle=90,%
objectPos=l]
{figure}{\includegraphics[width=\textheight, height=0.75\textwidth]{./Figur/resqrbd}}[Table caption]{Figure caption}{fig:resqrbd}

Any way I can add a note/description (like tnote in ctable) under the figure and have the caption on top (capPos = t)?

Best Answer

use it this way for notes:

\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{hvfloat, lipsum}

\begin{document}

\hvFloat[%
  floatPos=p,
  capWidth=1.3,
  capPos=t,
  rotAngle=90,
  objectPos=l]
{figure}
{\parbox[t]{\textheight}{\centering%
  \includegraphics[width=\textheight, height=0.75\textwidth]{./Figur/resqrbd}\\[5pt]
    \parbox{0.7\linewidth}{\fontsize{8pt}{8.1pt}\selectfont text ... \lipsum\ text}}}
[Table caption]
{Figure caption}
{fig:resqrbd}

\end{document}

enter image description here