github 初始
https://chatgpt.com/share/694c86c7-1788-800e-97de-5c492ec415e5
在 ubuntu 下用 ssh,可先用此指令設定
git remote set-url origin git@github.com:usrname/reponame.git
快速 push
git add . && git commit -m "update something" && git push -u origin main
記錄分享個人玩電腦的筆記。電腦是一種工具,善用軟體,可以玩得有效率。 p.s. 小弟分享的是個人實際使用的版本,未必是最新版本。
github 初始
https://chatgpt.com/share/694c86c7-1788-800e-97de-5c492ec415e5
在 ubuntu 下用 ssh,可先用此指令設定
git remote set-url origin git@github.com:usrname/reponame.git
快速 push
git add . && git commit -m "update something" && git push -u origin main
讓 jupyter notebook 跑 sage 時都顯示漂亮數學式的方法
edit:
~/.ipython/profile_default/startup/00-sage-display.py
加入:
try:
get_ipython().run_line_magic("display", "latex")
except Exception:
pass
\documentclass[12pt]{article}
\usepackage{luatexja}
\usepackage{luatexja-fontspec}
% 英文
\setmainfont{TeX Gyre Termes}
% 中文
\setmainjfont{cwTeX Q Ming Medium}
\begin{document}
Hello,
這是一個 LuaLaTeX 的測試文件。
中文(台灣繁體)測試:
台灣、繁體中文、注音符號
我打江南走過,那等在季節裡的容顏。
數學測試:
\[
E = mc^2
\]
\end{document}