戻る

minipage

      tabular environment と 似たような例 として minipage を 見てみましょう (似たような というのは あくまで box としての 扱いということです。)では 中央 下部 上部 に 揃えた 出力 例を まず 見てみましょう。minipage の幅は 5cm にした例です。(プリントアウト 実測 5cm でしたので そういうことでしょう。)

063-minipage-w514h566.png

TeXファイル (source code)も 見ておきましょう。

\documentclass[a4paper,10pt]{jarticle}
\begin{document}

\begin{enumerate}
\item center

Some text.
\begin{minipage}{5cm}
This is a mini-page. The text inside
it is formatted as usual.

Paragraph breaks can also be used, but 
there is no indentation by default\footnote{and 
this is how a footnote appears}.
\end{minipage}
The rest of the line.

\item bottom

Some text.
\begin{minipage}[b]{5cm}
This is a mini-page. The text inside
it is formatted as usual.

Paragraph breaks can also be used, but 
there is no indentation by default\footnote{and 
this is how a footnote appears}.
\end{minipage}
The rest of the line.


\item top

Some text.
\begin{minipage}[t]{5cm}
This is a mini-page. The text inside
it is formatted as usual.

Paragraph breaks can also be used, but 
there is no indentation by default\footnote{and 
this is how a footnote appears}.
\end{minipage}
The rest of the line.
\end{enumerate}
\end{document}

\linewidth

幅方向の長さ 5cm としたが 別の 方法も有ります”\linewidth”を使う方 法です ”{5cm}”の表現に 対して ”{0.5\linewidth}”の様に 指定します。 以下の例では 区別を 強調するために ”{0.3\linewidth}”で ”{5cm}”の も のと比較してみました。

064-minipage-w508h428.png

TeX ファイル(source code)はこれです。

\documentclass[a4paper,10pt]{jarticle}
\begin{document}

\begin{enumerate}
\item specify cm

Some text.
\begin{minipage}{5cm}
This is a mini-page. The text inside
it is formatted as usual.

Paragraph breaks can also be used, but 
there is no indentation by default\footnote{and 
this is how a footnote appears}.
\end{minipage}
The rest of the line.

\item specify linewidth

Some text.
\begin{minipage}{0.3\linewidth}
This is a mini-page. The text inside
it is formatted as usual.

Paragraph breaks can also be used, but 
there is no indentation by default\footnote{and 
this is how a footnote appears}.
\end{minipage}
The rest of the line.
\end{enumerate}
\end{document}

にゃんたろう 拝!

2008年 7月 5日 (土) 21:07:54 JST 作成


戻る

Copyright © 2006.-2008. nyantarou All Rights Reserved.