森林流程图的脚注

森林流程图的脚注

我一直在阅读有关这个​​问题的文章,但不确定如何在我的流程图中添加脚注。

我复制了一个最小的工作示例。

\documentclass[12pt,twoside]{report}
%document class define parámetros generales para un reporte
%preambulo
\usepackage[headheight=18pt,a4paper, width=150mm, top=25mm, bottom=25mm, bindingoffset=6mm, headsep=18pt]{geometry}
%aca utilizo la geometría de la hoja 
\usepackage[spanish,es-noquoting]{babel}
%interprete de idioma castellano
\usepackage[utf8]{inputenc} %relacionado al input
\usepackage[T1]{fontenc} 
%para que funcionen bien las tildes
\usepackage[activate={true,nocompatibility},final,tracking=true,kerning=true,spacing=true,factor=1100,stretch=10,shrink=10]{microtype}

\usepackage[hyphens]{url} 
\usepackage{textcomp} %para el símbolo de marca registrada
\usepackage{tikz}
\usepackage{forest}
\usetikzlibrary{babel}
\pagestyle{mystyle}
\usepackage{hyperref}

\begin{document}

\chapter*{Resume} % * avoids numeration

\begin{forest}
  for tree={
    rounded corners, draw, align=center, top color=white, bottom color=blue!20,
    edge+=->,
    l sep'+=10pt,
  },
  [Solvatación
    [Explícito+Implícito
      [Solvateshell + Cosmo]
      [Packmol + Cosmo]
    ]
    [Implícito
      [Cosmo]
    ]
  ]
\end{forest}
\end{document}

该脚本生成以下图像:

图像

我需要它有下一句作为脚注:蓝色方块代表了可通信的程序和黑色线条。

你可以帮帮我吗?

答案1

像这样?

在此处输入图片描述

footnote仍将我留在图片标题上...您确定不是吗?

上面的图像是通过将forest图像封装在figure浮点型中并使用caption包生成的:

\documentclass[12pt,twoside]{report}
\usepackage[a4paper, headheight=18pt, headsep=18pt,
            width=150mm, top=25mm, bottom=25mm,
            bindingoffset=6mm]{geometry}
\usepackage[spanish,es-noquoting]{babel}
\usepackage[utf8]{inputenc}
\usepackage[activate={true,nocompatibility},
            final,tracking=true,kerning=true,
            spacing=true,factor=1100,
            stretch=10,shrink=10]{microtype}
\usepackage{forest}
%\pagestyle{mystyle}
\usepackage{caption}
\usepackage[hyphens]{url}

\begin{document}
\chapter*{Resume} % * avoids numeration

\begin{figure}[h!]
\captionsetup{skip=1ex,font=footnotesize}
\centering
\begin{forest}
  for tree={
    rounded corners, draw, align=center, top color=white, bottom color=blue!20,
    edge+=->,
    l sep'+=10pt,
  },
  [Solvatación
    [Explícito+Implícito
      [Solvateshell + Cosmo]
      [Packmol + Cosmo]
    ]
    [Implícito
      [Cosmo]
    ]
  ]
\end{forest}
\caption*{Los bloques azules representan programas y las líneas negras scripts que los comunican}
\end{figure}

笔记:通过删除 *,caption您可以将此脚注转换为真正的标题。

相关内容