LaTeX基本テンプレート

基本

\documentclass[12pt]{jarticle}
\begin{document}
% ここから文章を書いて下さい。

% ここまで文章を書いて下さい。
\end{document}
\documentclass[12pt]{jarticle}
\title{タイトル}
\author{作者}
\date{日付}
\begin{document}
\maketitle
% ここから文章を書いて下さい。

% ここまで文章を書いて下さい。
\end{document}
\documentclass[12pt]{jarticle}
\title{タイトル}
\author{作者}
\date{日付}
\begin{document}
\begin{titlepage}
\maketitle
\thispagestyle{empty}
\end{titlepage}
\tableofcontents
\newpage
% ここから文章を書いて下さい。

% ここまで文章を書いて下さい。
\end{document}

もどる