Расстояние между примечаниями под рисунком

Расстояние между примечаниями под рисунком

Я пытаюсь настроить интервал между строками текста примечаний, которые у меня есть под рисунком. Размер шрифта примечания, например, footnotesize, но интервал такой же, как у обычного текста в остальной части документа, поэтому примечание выглядит странно и некрасиво с таким пустым пространством. Я хотел бы иметь такой же интервал для сносок.

Я попробовал использовать пакет spacing, но, похоже, его нельзя использовать внутри float-фигуры.

Это пример того, что есть у меня.

\documentclass{article}
\begin{document}

\begin{figure}
\caption{My figure}
\centering \rule{4cm}{4cm}

{\footnotesize{}Note: some explanation about the figure above. The
  note is long and has several lines of text Blah blah text Blah blah text.}
\end{figure}

\end{document}

решение1

Как указано в комментариях, вам нужно закончить абзац, чтобы настроить межстрочный интервал. Вы можете сделать это, добавив explicit \parв конце вашей заметки, как показано ниже. Однако, вероятно, было бы изящнее определить простую среду для ваших заметок о рисунках. Это также показано ниже.

введите описание изображения здесь

\documentclass{article}
\newenvironment{fignote}{\begin{quote}\footnotesize}{\end{quote}}
\begin{document}

\begin{figure}
\caption{My figure}
\centering 
[Figure contents]

\bigskip
{\footnotesize\noindent Note: some explanation about the figure above. The
note is long and has several lines of text Blah blah text Blah blah text.
In theory, the interrelation of system and/or subsystem technologies must utilize
and be functionally interwoven with the preliminary qualification limit.  In
particular, any associated supporting element necessitates that urgent consideration
be applied to possible bidirectional logical relationship approaches.  Conversely,
any associated supporting element recognizes other systems' importance and the
necessity for possible bidirectional logical relationship approaches.  However, a
service-oriented paradigm is further compounded when taking into account the
evolution of specifications over a given time period.\par}
\end{figure}

\begin{figure}
\caption{Improved figure}
\centering 
[Figure contents]

\begin{fignote} 
Note: some explanation about the figure above. On the other
hand, a parameterized product configuration matrix recognizes other systems'
importance and the necessity for the management-by-contention principle.
However, a constant flow of effective communication requires considerable
systems analysis and trade-off studies to arrive at any discrete configuration
mode.  
\end{fignote}
\end{figure}

However, a constant flow of effective communication is functionally equivalent and
parallel to the anticipated fourth-generation equipment.  Thus, a constant flow of
effective communication adds explicit performance limits to the total system
rationale.  Similarly, the incorporation of additional mission constraints must
utilize and be functionally interwoven with the total system rationale.  

\end{document}

Связанный контент