0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【LaTeX】文章の間に図を入れる方法【図の回りこみ(wrapfigure)】

Posted at

文章の間に図を入れる(回りこませる)ことができるwrapfigパッケージについて説明する。

以下をプリアンブル中に記述することで図の回りこみを使用できるようになる。

\usepackage{wrapfig}

構文は以下の通り。

\begin{wrapfigure}[行数]{lまたはr}{幅}
  ~
\end{wrapfigure}

実装例

コード
吾輩は猫である。名前はまだ無い。

\begin{wrapfigure}[5]{r}{8zw}
  \centering
  \vspace{-\intextsep}
  \includegraphics[width=25mm]{サンプル.pdf}
\end{wrapfigure}

どこで生れたかとんと見当がつかぬ。何でも薄暗い〜

綺麗に配置するコツ

vspace{-\intextsep}を記述することで、図とテキストの間にある余白を減らして文章と図の頭を揃えている。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?