latex 画流程图,使用visio绘制流程图
大家都知道Visio是绘制流程图的利器,但是插入Latex可能会变得模糊。这里是我最好的清晰度。
步骤1:绘制Visio图表后,将其保存为Pdf,文件-页面设置-页面大小选择,调整大小以适应绘图,然后将其发布为Pdf,如PR1_Visio.pdf
第二步:
*如果要将其插入到浮动窗口中,可以直接使用。
begin{figure}
居中
include graphics[width= text width]{ PR1 _ visio . pdf }
caption{fit}label{}
end{figure}
*如果要将其插入非浮动区,可以采用以下方法。为了在图外使用caption,您可以在简介中添加它:
makeattletter
new command fig caption { def @ captype { figure } caption }
new command tab caption { def @ captype { table } caption }
makeatother
然后直接使用下面的命令。
begin{center}
include graphics[宽度=4厘米,高度=8厘米]{PR1_Visio.pdf}
figcaption{系统聚类算法流程图}label{}
end{center}