0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

LaTeXで日本語の表示を有効にする

Posted at

Purpose

修論やその発表の要旨を作成する際に、Overleafを用いた。Overleaf(というかLatex?)はデフォルトでは日本語に対応していないため、仮に日本語を入力しても反映されない。そのため、日本語を有効にする必要があり、その手段を示す。

How to

  1. Overleafにログインし、「新規プロジェクト」から新規のプロジェクトを作成。
  2. main.txtの「\documentclass{article}」を「\documentclass{jsarticle}」に変更。
  3. メニュー(画面左上)> コンパイラ でコンパイラを「LaTex」に変更。
  4. 新規ファイルを作成する。新規ファイル(メニューの下、左端のアイコン)を選択 > Add FilesのFile Nameに「latexmkrc」を入力 > 作成を押下
  5. 3.で作成したlatexmkrcに下のコードを入力。
latexmkrc
$latex = 'platex';
$bibtex = 'pbibtex';
$dvipdf = 'dvipdfmx %O -o %D %S';
$makeindex = 'mendex -U %O -o %D %S';
$pdf_mode = 3; 

Unicodeを用いる場合は下のコードを入力する。

latexmkrc
$latex = 'uplatex';
$bibtex = 'upbibtex';
$dvipdf = 'dvipdfmx %O -o %D %S';
$makeindex = 'mendex -U %O -o %D %S';
$pdf_mode = 3; 

これでコンパイルすると、日本語が有効になる。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?