LoginSignup
2
6

More than 5 years have passed since last update.

俺式Latexチャートシート

Last updated at Posted at 2017-04-18

毎週進捗レポートを強要されている人が毎回利用しているLatexのチャートシートです.

Latexのすヽめ

LaTeXは, 他のレポート作成ツール(ex Word)と比べて, 簡単に章立ての変更, 図へのキャプション, 参照 が可能です.

外部TeXファイルの参照

外部ファイルを参照することにより, とても完結したTex lifeを送れます.

\input{./_dir_/_name_.tex}

画像貼り付け

パッケージにdvipdfmxを利用するとpngも表示できる.
\usepackage[dvipdfmx]{graphicx}

img
\begin{figure}[htbp]
    \begin{center}
    \includegraphics[width=5cm]{file.png}
    \caption{captionString}
    \label{fig:type}
    \end{center}
\end{figure}

ソースコード挿入

lstinputlistingのタイトルを\begin{document}の前で宣言しておくことで名前を変えられる.
\def\lstlistingname{リスト}

list
\lstinputlisting[caption=captionString,label=list:listString]{./source.txt}

テーブル

そのまま tableです。
tabularのオプションはそれぞれ以下のような意味を持っています。

オプション 意味
l 左寄せ
c 中央揃え
r 右寄せ
table
\begin{table}[htb]
  \begin{center}
    \caption{caption_string} 
    \begin{tabular}{|l|c|r|} \hline
      aa & bb & cc \\ \hline
    \end{tabular}
    \label{table:labelString}
  \end{center}
\end{table}
2
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
6