-
Figure Images for PapersMiscellaneous 2021. 8. 11. 08:20
High resolution
Matplotlib
Figure images for papers are required to have dpi of 300 (= high resolution). With matplotlib, you can save an image as follows:
plt.savefig('Final_Plot.png', dpi=300, bbox_inches='tight')
jpg vs. png Note that a .jpg file carries "dpi" information in the property, while a .png file does not show it in the property. But, a png file is much lighter.
PowerPoint
https://m.blog.naver.com/l3i3m3/220791456018
Avoiding Type 3 Font
According to the AAAI conference, they don't accept "type 3 font". But, matplotlib uses type 3 font as default. We can change this as follows:
matplotlib.rcParams['pdf.fonttype'] = 42 matplotlib.rcParams['ps.fonttype'] = 42
'Miscellaneous' 카테고리의 다른 글
Docker - Very beginning tutorial (0) 2021.10.06 Decompress tar files (0) 2021.06.22 Downloadable link from Google Drive for wget (0) 2021.06.22