Ubuntu 管理心得

搜尋此網誌

2022年7月15日 星期五

Single click desktop icons

Open nemo, 編輯 -> 偏好設定 -> 行為 -> 單擊以開啟項目


2022年7月12日 星期二

Octave plot and print with latex code

#Maybe need to do this first:
#sudo ln -s /usr/bin/latex /usr/local/bin

x = 1:10;
plot (x, x.^2)
title ("$x^2$", "interpreter", "latex")
print -svgconvert 'test_latex.pdf'