Skip to content

Commit

Permalink
Make it compatible with Overleaf
Browse files Browse the repository at this point in the history
  • Loading branch information
akira-okumura committed Jun 28, 2024
1 parent e9fd21b commit 889d9bd
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,14 @@ $ open -a Skim main.pdf

論文本体の`main.pdf`の他に、宇宙地球環境研究所の論文提出時に必要となる次の PDF も同時に生成されます。
- `ISEE_abstarct.pdf`:日本語の修士論文要旨(ここには、論文の題目や概要が自動的に LaTeX ファイルから流し込まれます)

## Overleaf での使い方

[Overleaf](https://www.overleaf.com/) でこのテンプレートを使用する場合、次の手順を踏んでください。

1. [project](https://www.overleaf.com/project) から New Project > Blank Project を選択し、新しいプロジェクトを作成する。
1. 本レポジトリのファイルを全てアップロードし、Overleaf の自動作成した `main.tex` は置き換える。
1. Menu > Compiler で LaTeX を選択する。
1. 修論本体をコンパイする際は、Menu > Main document で `main.tex` を選択し、論文要旨をコンパイルするときは `ISEE_abstract.tex` を選択する。

実際に Overleaf のプロジェクトにした例は[ここ](https://www.overleaf.com/read/hkpvdrmpdztq#673380)から見ることができます。
8 changes: 8 additions & 0 deletions latexmkrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
$latex = 'uplatex';
$bibtex = 'upbibtex';
$dvipdf = 'dvipdfmx %O -o %D %S';
$makeindex = 'mendex -U %O -o %D %S';
$pdf_mode = 3;
$ENV{TZ} = 'Asia/Tokyo';
$ENV{OPENTYPEFONTS} = '/usr/share/fonts//:';
$ENV{TTFONTS} = '/usr/share/fonts//:';
6 changes: 3 additions & 3 deletions preamble.tex
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
% 同梱の ISEE 用の表紙テンプレ
\usepackage{thesis_cover}

%
\usepackage[dvipdfmx]{color}

% OTF フォントを使えるようにし、複数のウェイトも使用可能にする。
% これがないと、Mac のヒラギノ環境で使われる角ゴが太すぎてみっともない。
\usepackage[deluxe]{otf}
Expand All @@ -23,9 +26,6 @@
% default だとバランスが悪いので、日本語に合わせて文字の大きさを調整する。
\usepackage[scaled=1.05,helvratio=0.95]{newtxtext}

%
\usepackage[dvipdfmx]{color}

% latexdiff
% 実際の修論には入れる必要なし
%DIF PREAMBLE EXTENSION ADDED BY LATEXDIFF
Expand Down

0 comments on commit 889d9bd

Please sign in to comment.