このページは,忘却簿を兼ねた TeXに関するTips集です。
どこかで誰かのお役に立てたら幸いです。
箇条書き
jarticle.cls から
itemize
\renewcommand{\labelitemi}{\textbullet}
\renewcommand{\labelitemii}{\textcircled{~}}
\renewcommand{\labelitemiii}{\textasteriskcentered}
\renewcommand{\labelitemiv}{\textperiodcentered}
enumerate
\rerenewcommand{\theenumi}{\@arabic\c@enumi}
\rerenewcommand{\theenumii}{\@alph\c@enumii}
\rerenewcommand{\theenumiii}{\@roman\c@enumiii}
\rerenewcommand{\theenumiv}{\@Alph\c@enumiv}
\renewcommand{\labelenumi}{\theenumi.}
\renewcommand{\labelenumii}{(\theenumii)}
\renewcommand{\labelenumiii}{\theenumiii.}
\renewcommand{\labelenumiv}{\theenumiv.}
PostScriptフォント
NFSS2に基づきPostScriptフォントを利用する。(PSNFSSパッケージ)

\usepackage{times} とすると
\renewcommand{\rmdefault}{ptm} %% Roman を Times Roman
\renewcommand{\sfdefault}{phv} %% Sans Serif を Times Helvetica
\renewcommand{\ttdefault}{pcr} %% Typewriter Type を Times Courier
\normalfont
※ 他には avant.sty bookman.sty helvet.sty newcent.sty palatino.sty

使えるパッケージ
amsmath: AMS(American Mathematica Society)で開発された,数式関連のマクロ集。
太字ベクトル→\boldsymbol{A}
amssymb: 筆記体風大文字→$\mathcal{ABC}$ ドイツのヒゲ文字→$\mathfrak{ABCabc}$

ascmac: ASCIIの特殊マクロ集。
\return \Return \yen \keytop{text} \mask{text}{0|1|2|3} など
boxnote screen itembox shadebox 環境
\return \Return \yen \keytop{text} など

fancybox: 文章の周りを囲むためのマクロ集。
\shadowbox{text} \doublebox{text} \ovalbox{text} \Ovalbox{text}
ページ・レイアウト
ページ番号無表示: プリアンブルに \pagestyle{empty}

行間: \baselineskip length

数式の番号を節番号に:

\makeatletter
\renewcommand{\theequation}{%
\thesection.\arabic{equation}}
\@addtoreset{equation}{section}
\makeatother

図の貼込
プリアンブルに \usepackage{graphics} を宣言して
図を入れたいところに \scalebox{倍率}{\includegraphics{図.eps}} (例)。

BACK