対象
cloud latexのアカウントを持っていることを想定する。また、Gitも使える前提。
やり方
Cloud LaTeXをVSCodeで使う
- 公式 を参考にして、Cloud LaTeX側の準備をする
-
ローカルに空のプロジェクト用フォルダを作成し、VSCode でそのフォルダを開く
(これを忘れるとVSCode で開いた場所に勝手にcloneされる) - 公式 を参考にして、VSCode側の設定をする
Git管理する
最初にやること
cd プロジェクト用フォルダ
git init
編集後にやること
git status # check the changes
git add . # stage the changes
git status # check the staged changes
git commit -m "comment" # the comment can be anything