在 org 模式下使用点创建 latex-pdf,如何设置图形大小?

using dot in orgmode to create latex-pdf, how can I set the grap size?

如何在生成的 pdf 中设置图形或图像大小?

在组织模式下使用此代码:

 #+BEGIN_SRC dot :file hallo1_1_1.png 
 digraph hallo1_1_1 {
  A [shape = "circle",style=filled, fillcolor=yellow];
  }
  #+END_SRC

绘制了一个巨大的页面填充黄色像素圆圈。 如何设置图像大小和分辨率? 谢谢。

您始终可以将特定的 LaTeX(或 HTML)属性添加到源代码块的结果中:

#+BEGIN_SRC dot :file hallo1_1_1.png 
 digraph hallo1_1_1 {
  A [shape = "circle",style=filled, fillcolor=yellow];
  }
#+END_SRC

#+attr_latex: :width 2cm
#+RESULTS:
[[file:hallo1_1_1.png]]

文档 here.

您可以在 header 中设置 dpi 选项。

#+headers: :file file.gif :cmdline -Tgif -Gdpi=100
#+begin_src dot
 digraph g { 
...
}
#+end_src