%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% %% @file Thesis.tex %% @title 学位論文雛形 %% @date 2014/11/21 %% @brief 米田研究室の卒業論文, 修士論文, 博士論文のTeX雛形 %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \documentclass[ oneside, % 偶奇ページのレイアウトの指定. oneside:変更なし. twoside:変更あり. onecolumn, % 段組指定. onecolumn:段組なし. twocolumn:段組あり. 12pt, % 文字サイズ. 10pt. 11pt. 12pt. a4paper, % 用紙サイズ. a4paper. a5paper. b4paper. b5paperなど. ]{jarticle} %%%%%%%%%%%%%% %% PACKAGES %% %%%%%%%%%%%%%% \usepackage{amsmath, amssymb} \usepackage[dvipdfmx]{graphicx} \usepackage{upquote} \usepackage[usenames]{color} \usepackage{colortbl} \usepackage{url} \usepackage{here} \usepackage{wrapfig} \usepackage[% dvipdfmx, setpagesize=false,% bookmarks=true, bookmarksopen, bookmarksnumbered=true,% colorlinks, breaklinks,% pdfstartview={FitH -32768},% pdftitle={},% pdfsubject={},% pdfauthor={},% pdfkeywords={},% linkcolor=black ]{hyperref} \usepackage{atbegshi} \AtBeginShipoutFirst{\special{pdf:tounicode 90ms-RKSJ-UCS2}} %%%%%%%%%%%%%%%%%%%%%%%% %% PAGE STYLE SETTING %% %%%%%%%%%%%%%%%%%%%%%%%% \setlength{\topmargin}{-1.5cm} \setlength{\textheight}{24.0cm} \setlength{\oddsidemargin}{-0.5cm} \setlength{\textwidth}{17.0cm} %%%%%%%%%%% %% TITLE %% %%%%%%%%%%% \title{ 卒業論文,修士論文のタイトル } %%%%%%%%%%%% %% AUTHOR %% %%%%%%%%%%%% \author{% 早稲田大学基幹理工学部数学科 米田研究室 氏名(学籍番号) } \date{提出日(2014年2月2日)} \begin{document} \maketitle \begin{abstract} ここには論文の要旨を書く. 序論・導入ではない. どんな問題を,どのように考察し,どのような結論が得られたか, を書く. つまり概要だけ読めばある程度全体が分かる, というものでなくてならない. 論文の内容がだいたい固まってから書けばよい. \end{abstract} \section{序論} 第1章は問題の背景や準備を書く. 文献は必ず書く. (重力波に関しては\cite{Schutz}を参考, Einstein方程式の正準形式については既に導出されており\cite{Wald}, といった書き方で) 準備の式が多いときは第2章にまわす. \section{OO問題についての考察} 論文のメインとなる部分である. 複数の章にしてもOK. \begin{eqnarray} {\bf Einstein方程式} && R_{\mu\nu}-\frac{1}{2}R \, g_{\mu\nu}=\kappa T_{\mu\nu} \label{eq:EinsteinEq} \end{eqnarray} \eqref{eq:EinsteinEq}は時空の曲がり具合と物質場の分布のつり合いを表す式. \section{図の入れ方} \begin{enumerate} \item jpg,gif,bmpなどの画像ファイルを手に入れる. 印刷物はスキャンする. \item 画像ファイルをepsに変換する. EPS-Conv\\ (pdfファイルも可) \item texファイルにファイル名を書く. \[ \includegraphics[width=4cm]{fig.eps} \] \begin{figure}[H] \begin{center} \includegraphics[width=55mm]{split.pdf} \caption{時空分解図} \end{center} \end{figure} \end{enumerate} \section{注意} \begin{itemize} \item である調に揃える. (ですます調でも良いが,混在は不可.) \item 句読点を「,.」に揃える. (「,。」でも良いが,混在は不可.) \item 数式内の変数の文字はイタリック. (例) $\sin x$はOK, $sin$ x はNG \item \LaTeX の文法についてはネットでlatexと検索して調べる. (参考文献\cite{latex, latex2}のサイトが有用) \item 使ったプログラム(CやMathematica)もつける. \begin{verbatim} ClearAll["\"] q = 2; SetOptions[VectorPlot, Frame -> False, Axes -> True, BaseStyle -> {Italic, FontSize -> 20}, AxesLabel -> {x, y}, Ticks -> None, VectorPoints -> 7]; VectorPlot[{-x, -y}, {x, -q, q}, {y, -q, q}] VectorPlot[{-y, x}, {x, -q, q}, {y, -q, q}] \end{verbatim} \end{itemize} \section{まとめ} この論文で, どんな問題を, どんな調べ方をし, 何が分かったか, 何が分からなかったか, などのまとめを書く. ある意味,概要の繰り返しだが, より詳しく具体的なものを書く. 大学院へ進む人は, 今後の研究の展望を書くのもよい. %%%%%%%%%%%%%% %% 参考文献 %% %%%%%%%%%%%%%% \begin{thebibliography}{100} \bibitem{Schutz} B. Schutz, 江里口良治, 二間瀬 敏史, ``シュッツ 相対論入門'', 丸善株式会社(2010). \bibitem{Wald} R. Wald, ``General Relativity'', The University of the Chicago Press(1984). \bibitem{latex} \url{http://www.biwako.shiga-u.ac.jp/sensei/kumazawa/tex.html} \bibitem{latex2} \url{http://www002.upp.so-net.ne.jp/latex/} \end{thebibliography} \end{document}