2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

LaTeXでよく使うタグのテンプレート

Last updated at Posted at 2016-06-13

#概要

個人的によく使うタグをまとめます.

##画像の表示

\usepackage[dvips]{graphicx}%パッケージのインポート

\begin{figure}[H]
 \begin{center}
 \fbox{%図を線で囲む
 \includegraphics[clip,width=8cm]{picture/sample.eps}%{図へのパス}
 }
 \end{center}
 \caption{sample.html}%{図のキャプション}
 \label{fig:sample}%{図のタグ}
\end{figure}

\ref{fig:sample}%文中で引用

画像の拡張子をepsにしないとエラーが出る.

##ソースコードの表示

\lstinputlisting[caption=sample.html,label=sample]{src/sample.html}%独自パッケージを使用

\pgref{sample}%文中で引用
2
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?