-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
71 lines (57 loc) · 1.69 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
%% -*- coding: utf-8-unix -*-
\documentclass[uplatex,dvipdfmx,report]{jsbook}
\usepackage{newpxtext} % use Palatino/Helvetica
\usepackage{color} % coloring
\usepackage{array,tabularx,longtable,colortbl} % table
\usepackage{cite} % overcite
% table footnote
% http://tgrr-putan.blogspot.jp/2012/11/tex.html
\usepackage{threeparttable}
\usepackage[dvipdfmx,hiresbb]{graphicx} % figure
\usepackage{float,wrapfig} % figure/table layout
\usepackage{upquote} % backquote
\usepackage{lscape} % page landscape change
% macros defined myself
\usepackage{mymacros}
% href and pdf bookmark
% https://texwiki.texjp.org/?hyperref
\usepackage{url} % url
\usepackage[dvipdfmx]{hyperref}
\usepackage{pxjahyper}
\hypersetup{%
bookmarksnumbered=true,%
bookmarksopen=true,%
bookmarksdepth=3,%
colorlinks=true,%
setpagesize=false,%
pdftitle={ネットワークテストシステム プロジェクト 2016年度 成果報告書},%
pdfauthor={ネットワークテストシステム プロジェクトチーム}}
\title{ネットワークテストシステム プロジェクト \\ 2016年度 成果報告書}
\author{ネットワークテストシステム プロジェクトチーム}
\pagestyle{headings} % ノンブル/柱
\begin{document}
\maketitle % 表紙
\frontmatter
\setcounter{tocdepth}{2}
\tableofcontents % 目次
\listoffigures % 図目次
\listoftables % 表目次
\mainmatter
\include{abstract}
\include{issues}
\include{approach}
\include{nettester_design}
\include{nettester_usage}
\include{poc_design}
\include{test_scenario}
\include{conclusion}
\appendix
\include{dictionary}
\include{appendix_sw}
\include{appendix_bk}
\include{cites}
\end{document}
%%% Local Variables:
%%% mode: yatex
%%% TeX-master:
%%% End: