Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Commit

Permalink
Add English template
Browse files Browse the repository at this point in the history
  • Loading branch information
Affonso-Gui committed Nov 29, 2019
1 parent 5a4cd3b commit 1ca78a7
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
###########################################################

TARGET := main
# TARGET := mainE

OS := $(shell uname -s)
LATEXMK_OPTION := -time -recorder -rules
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ exec bash # to update PATH


## Usage
Change the Makefile target to `mainE` or rename the `mainE` as `main` to use English version.

```
emacs -nw main.tex
Expand Down
87 changes: 87 additions & 0 deletions mainE.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
%------------------------------------------------------------------------------
\documentclass[master,final,english]{cimt}
% Use "english" option for English thesis.
% \documentclass[master,oneside,english]{cimt}

% List packages here.
\usepackage[dvipdfmx]{graphicx}
\usepackage{url}
\usepackage{layout}

% Title
\etitle{On blahblah}
% A long title is automatically split into lines. Explicit newlines
% can also be specified:
% \etitle{This is a long title\\with a explicit line break}

% Title in Japanese
\jtitle{これこれについて}

% Author
\eauthor{Sota Akiba}

% Author in Japanese
\jauthor{秋葉 創太}

% Supervisor
\supervisor{Professor Joichi Hongo}

% Submission. The following line specifies "January 2010."
\handin{2010}{1}

\begin{document}

% Output the cover and the inside cover.
\maketitle

% Frontmatter starts here.
\frontmatter

% Abstract
\begin{eabstract}
\input src/eabst.tex
\end{eabstract}

% Abstract in Japanese
\begin{jabstract}
\input src/jabst.tex
\end{jabstract}

% Acknowledgements (optional) (can be placed in backmatter section)
\begin{acknowledgements}
\input src/ack.tex
\end{acknowledgements}

% Table of Contents
\tableofcontents

% Mainmatter starts here.
\mainmatter

\input src/intro.tex
\input src/body.tex
\input src/concl.tex


% Backmatter starts here.
\backmatter

% Publications
\pubUseLongName % title becomes ``Publications and Research Activities''
\begin{publications}
\input src/publications.tex
\end{publications}

% Bibliography. An example using BibTeX. (Style can be changed.)
\bibliographystyle{junsrt}
\bibliography{main}

% Another example of Bibliography.
% \input src/biblio.tex

% Appendix (optional)
\appendix

\input src/appendix.tex

\end{document}

0 comments on commit 1ca78a7

Please sign in to comment.