如何在生成的pdf中設置圖形或圖像大小?在orgmode中使用dot來創建latex-pdf,我該如何設置grap的大小?
在組織模式使用此代碼:
#+BEGIN_SRC dot :file hallo1_1_1.png
digraph hallo1_1_1 {
A [shape = "circle",style=filled, fillcolor=yellow];
}
#+END_SRC
一個巨大的頁面填充黃色pixeled畫圓。 如何設置圖像大小和分辨率? 謝謝。
讓點在大尺寸上生成形狀,然後在答案中使用'attr_latex'機制縮小它可能會更好。這將避免你觀察到的像素化。但是你可能不得不增加邊界的厚度,否則可能會變得有點不合適。像這樣的東西應該工作:'A [shape =「circle」,width = 10,penwidth = 2,style = filled,fillcolor = yellow];' – Nick
找到解析解決方案:D。 [鏈接 - > StackOverFlow](http://stackoverflow.com/questions/1286813/how-do-i-set-the-resolution-when-converting-dot-files-graphviz-to-images) –
得到解決方案的解決方案找到。 [鏈接 - > StackOverFLow](http://stackoverflow.com/questions/1286813/how-do-i-set-the-resolution-when-converting-dot-files-graphviz-to-images) –