TeXテンプレート

必要最小限のTeX雛形
\documentclass[a4j,12pt]{jarticle}
\title{タイトル}
\author{氏名}
\date{\today}
\begin{document}
\maketitle


\section{見出し}
\section*{番号なし見出し}


\subsection{小見出し}
\subsection*{番号なし小見出し}



\textbf{太字にしたい文字列}

\textit{斜体 or イタリックにしたい文字列}

\underline{下線を引きたい文字列}



\begin{itemize}
\item 箇条書き
\item ただし中黒
\end{itemize}

\begin{enumerate}
\item 箇条書き
\item ただし連番
\end{enumerate}

\begin{description}
\item[箇条書き] だたし見出しつき
\item[見出し] 内容
\end{description}


\begin{quote}
文章の引用
\end{quote}


\footnote{脚注に書きたい文字列}


\end{document}
図表入り文書のTeX雛形
\documentclass[a4j,12pt]{jarticle}

\usepackage[dvipdfmx]{graphicx, color}

\title{タイトル}
\author{氏名}
\date{\today}
\begin{document}
\maketitle


\begin{figure}[htbp]
\begin{center}
\includegraphics*[width=8cm,height=5cm]{(絵や図のファイルの名前を記入)}
\end{center}
\caption{(絵や図の(実際に表示される)見出しを記入)}
\end{figure}% 


\begin{table}[htbp]
\caption{罫線なしの表}
\begin{tabular}{ccc}
1行1列 & 1行2列 & 1行3列 \\
2行1列 & 2行2列 & 2行3列 \\
3行1列 & 3行2列 & 3行3列 \\
\end{tabular}
\end{table}


\end{document}