0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

WSL で LaTeX

Last updated at Posted at 2024-10-03

はじめに

この記事は書きかけです。
後々、VScode についても追記します。

WSL に TeXLive をインストールする

WSL のインストール

まずは WSL をインストールしましょう。PowerShell での操作は以下の通りです。
インストールが完了したら、画面に従ってユーザー名とパスワードを設定してください。

PowerShell
wsl --install

TeXLive のインストール

続いて、ubuntu での操作を行います。

アップデート&アップグレード

Ubuntu
sudo apt -y update && sudo apt -y upgrade

TeXLive のインストール

まず、wget でインストーラを DL して解凍します。

Ubuntu
cd /tmp
wget https://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz
zcat < install-tl-unx.tar.gz | tar xf -

次に、解凍したディレクトリに移動し、perl でインストールを開始してください。
おま環ですが2時間程度かかりました。

Ubuntu
cd install-tl-yyyymmdd/
sudo perl ./install-tl --no-interaction

最後に、パスを通せばとりあえず LaTeX が使えるようになるはずです。
私の場合は /home/user/.bashrc の最後に以下の3行を追加しました。

.bashrc
export MANPATH="/usr/local/texlive/2024/texmf-dist/doc/man:$MANPATH"
export INFOPATH="/usr/local/texlive/2024/texmf-dist/doc/info:$INFOPATH"
export PATH="/usr/local/texlive/2024/bin/x86_64-linux:$PATH"

VScode で LaTeX を扱う

VScode のインストール

VScode のインストール

必要な Extensions のインストール

LaTeXWorkshop の設定

VScode 上で WSL に接続し LaTeX を記述&コンパイル

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?