-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
42 lines (32 loc) · 1.25 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
% main.tex -- parent TeX file
\documentclass[a4paper,uplatex]{jsreport}
%画像の設定
\usepackage[dvipdfmx]{graphicx} %画像を貼る
\usepackage{float} %画像の位置
\usepackage[format=hang,labelsep=colon,margin=20pt]{caption} %長いキャプションのための設定
\usepackage[dvipdfmx]{hyperref} %リンクとその設定
\usepackage{pxjahyper}
\hypersetup{ setpagesize=false, bookmarksnumbered=true, bookmarksopen=true, colorlinks=false, linkcolor=black, citecolor=black, }
%便利なコマンド
\usepackage{url} %URLコマンド\usl
\usepackage{siunitx} %SI単位コマンド\si
\usepackage[version=3]{mhchem} %化学式コマンドce
\usepackage{bm} %ベクトル太字
\begin{document}
\title{オレの研究\thanks{修士論文}}
\author{オレ\thanks{オレの大学}}
\date{\today} %date \today or 2100/01/01
\maketitle %タイトル
\tableofcontents %目次
%\listoffigures %図目次
%\listoftables %表目次
%アブスト
\input{tex/abstract.tex}
%本文
\input{tex/introduction.tex}%ひとつめ
\input{tex/sample.tex}%ふたつめ
\input{tex/conclusion.tex}%みっつめ
%参考文献
\bibliographystyle{myjunsrt} %参考文献スタイル,多すぎる著者を略すよう調整
\bibliography{reference} %reference.bib を読む
\end{document}