戻る

\newenvironment 作成 その1

     作成するのは

001-w264h90.png

\newenvironment 作成 参考のもの

”Exercise” は太字 ”This is a sample.”は 斜め文字 ということより TeX ファイル(source code)は

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

\end{document}

その場合の 表示は

002-w308h36.png

これは 参考にしている もので作成しました。 同じ 斜めに するのでは と 考えて

個猫 の 試行 その1

これでは どうなるでしょう

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

003-textit-w308h42.png

”itshape”のものに 比較すると 最初の ”T”のみ 斜めになっているよう です。 不都合です。

個猫 の 試行 悪あがき

へたらこれでは

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

004-textit-bra-w298h38.png

補足

参考に しているものは

http://theoval.cmp.uea.ac.uk/~nlct/latex/novices/novices.html
http://theoval.cmp.uea.ac.uk/~nlct/latex/novices/newenvironment.html

です

にゃんたろう 拝!

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


戻る

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