空白を取り扱う 命令の表です 画像は すこぶるおおきいですので ごめんな さい。
画像は適宜 切り取り 拡大縮小をしていますが
上記の TeX ファイルです
では TeX ファイル (source code)を見てみます。
\documentclass[a3paper,10pt]{jarticle} \usepackage{amsmath} \begin{document} \begin{table} \caption{Mathematical Spacing Commands } \label{tab:Bin} \begin{tabular}{llll} Command & Example Input & Example Output & note\\ & \$AB\$ & $AB$ & \\ \textbackslash thinspace or \textbackslash , & $A\,B$ & $A\,B$ & space between letters is 1/6 em\\ \textbackslash medspace or \textbackslash : & \$A\textbackslash :B\$ &$A\:B$ &space between letters is 4mu plus 2mu minus 4mu (rubber length)\\ \textbackslash thickspace or \textbackslash ; & \$A\textbackslash ;B\$ & $A\;B$ & space between letters is 5mu plus 5mu (rubber length)\\ \textbackslash quad & \$A\textbackslash quad B\$ & $A\quad B$ & space between letters is 1em.\\ \textbackslash qquad & \$A\textbackslash qquad B\$ & $A\qquad B$ & space between letters is 2em.\\ \textbackslash negthinspace or \textbackslash ! & \$A\textbackslash !B\$ & $A\!B$ & negative thin space\\ \textbackslash negmedspace & \$A\textbackslash negmedspace B\$ & $A\negmedspace B$ & negative medium space\\ \textbackslash negthickspace & \$A\textbackslash negthickspace B\$ & $A\negthickspace B$ & negative thick space \end{tabular} \end{table} \end{document}
ここで この表を作成した TeX ファイル(source code)について
\documentclass[a3paper,10pt]{jarticle}
\usepackage{amsmath}
\begin{document}
...
この パッケージ ”\usepackage{amsmath}”が 無い場合は エラー になります 。該当する項目は
\textbackslash negmedspace & \$A\textbackslash negmedspace B\$ & $A\negmedspace B$ & negative medium space\\ \textbackslash negthickspace & \$A\textbackslash negthickspace B\$ & $A\negthickspace B$ & negative thick space
の 2個の ものです それ以外の場合は パッケージを 使用しないでも 可能 です。
TeX ファイル(source code)が 次ぎのような場合は
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$A\negmedspace B$
\end{document}
画像は適宜 切り取り 拡大縮小をしていますが
正常 というか上手く 表示されます。ところがが
\documentclass{article}
%\usepackage{amsmath}
\begin{document}
$A\negmedspace B$
\end{document}
の 場合は
$ platex 0239.tex This is pTeX, Version 3.14159-p3.1.3 (euc) (Web2C 7.4.5) (./0239.tex pLaTeX2e <2001/09/04>+0 (based on LaTeX2e <2001/06/01> patch level 0) (/usr/share/texmf/tex/latex/base/article.cls Document Class: article 2001/04/21 v1.4e Standard LaTeX document class (/usr/share/texmf/tex/latex/base/size10.clo)) No file 0239.aux. ! Undefined control sequence. l.5 $A\negmedspace B$ ? x No pages of output. Transcript written on 0239.log.
長くなるが エラーのでた場合ということで
$ cat 0239.log This is pTeX, Version 3.14159-p3.1.3 (euc) (Web2C 7.4.5) (format=platex-euc 2004.3.27) 31 JUL 2008 21:04 **0239.tex (./0239.tex pLaTeX2e <2001/09/04>+0 (based on LaTeX2e <2001/06/01> patch level 0) (/usr/share/texmf/tex/latex/base/article.cls Document Class: article 2001/04/21 v1.4e Standard LaTeX document class (/usr/share/texmf/tex/latex/base/size10.clo File: size10.clo 2001/04/21 v1.4e Standard LaTeX file (size option) ) \c@part=\count81 \c@section=\count82 \c@subsection=\count83 \c@subsubsection=\count84 \c@paragraph=\count85 \c@subparagraph=\count86 \c@figure=\count87 \c@table=\count88 \abovecaptionskip=\skip41 \belowcaptionskip=\skip42 \bibindent=\dimen118 ) No file 0239.aux. \openout1 = `0239.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 4. LaTeX Font Info: ... okay on input line 4. LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 4. LaTeX Font Info: ... okay on input line 4. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 4. LaTeX Font Info: ... okay on input line 4. LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 4. LaTeX Font Info: ... okay on input line 4. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 4. LaTeX Font Info: ... okay on input line 4. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 4. LaTeX Font Info: ... okay on input line 4. LaTeX Font Info: Checking defaults for JY1/mc/m/n on input line 4. LaTeX Font Info: ... okay on input line 4. LaTeX Font Info: Checking defaults for JT1/mc/m/n on input line 4. LaTeX Font Info: ... okay on input line 4. LaTeX Font Info: External font `cmex10' loaded for size (Font) <7> on input line 5. LaTeX Font Info: External font `cmex10' loaded for size (Font) <5> on input line 5. ! Undefined control sequence. l.5 $A\negmedspace B$ ? x Here is how much of TeX's memory you used: 195 strings out of 95599 1954 string characters out of 1192511 48699 words of memory out of 1000001 3384 multiletter control sequences out of 10000+50000 7519 words of font info for 31 fonts, out of 500000 for 1000 14 hyphenation exceptions out of 1000 22i,1n,17p,112b,57s stack positions out of 1500i,500n,5000p,200000b,5000s No pages of output.
まあ 何度も こういうものに 遭遇して 上手くなってゆくのでしょう。
にゃんたろう 拝!
2008年 7月31日 (木) 21:03:45 JST 作成