TeX Defining Environments (環境)

前へ | 次へ

TeX 続 最初の 試み

文字の 様式までは 出来ました が 一行に 続いての 出力です 改行が 必要 と なるようです。

aragraph break \par

改行を 導入しましょう”\par”を追記します

\documentclass[a5paper,12pt]{jarticle}
\newenvironment{exercise}%                  environment name
{\par\textbf{Exercise}\begin{itshape}\par}% begin code
{\end{itshape}}%   

\begin{document}
\begin{exercise}
This is a sample.
\end{exercise}

\end{document}

その結果

出力

画像は適宜 切り取り 拡大縮小をしていますが

005-par-w198h68.png

切り取った部分を 見てるのでわかりませんが この前に 余白(indentation) が存在しています。そこで 次ぎは それを 取り除く 事にします。

悪あがき の例

本質とは 異なるのですが 悪あがきとして

\documentclass[a5paper,12pt]{jarticle}
\newenvironment{exercise}%          environment name
{\par\textbf{Exercise}\par\begin{textit}}% begin code
{\end{textit}}%                    end code
\begin{document}
\begin{exercise}
{This is a sample.}
\end{exercise}
\end{document}

006-private-w196h70.png

試行錯誤の結果であり 正解では 有りません。”\par”位置が 異なる。これ 以上 追従するのは 無理かもしれない?

にゃんたろう 拝!

2008年 8月 1日 (金) 21:01:12 JST 作成


前へ | 次へ

TeX Defining Environments (環境)

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