ご質問はこちらへ
修正済みのsfkanbun.styはどこ?
http://xymtex.com/fujitas2/texlatex/tategumi/sfkanbun.sty
は古いバージョンのように思います。(私の勘違いならスミマセン)
パッケージ間の干渉
\documentclass{report}
\usepackage{nccmath}
\usepackage{oz}
\begin{document}
\framebox[.4\textwidth][l]{</p> <p style="margin:0px;">\begin{fleqn}
\[\begin{array}{l}
ML\_in\\
\end{array}\]
\end{fleqn}
}
\end{document}
! Missing \endgroup inserted.
<inserted text>
\endgroup
l.13 }
というエラーメッセージが出ますが,\usepackage{oz}をコメントアウトするとエラーが消えます.なお,この例ではoz.styは使っていません.nccmathはここでは,fleqnという等式を左詰めで表示する環境のために使っています.
usepackageの順序を入れ替えると,次のような別のエラーメッセージが出ます.
! LaTeX Error: Command \implies already defined.
Or name \end... illegal, see p.192 of the manual.
これからも,2つのパッケージが干渉しているらしいことが分かります.
なお,上のframeboxの使用をやめると,\usepackage{oz}を残したままでエラーが出ません.
一問一答問題集の作成方法につきまして
フリーフォントの設定について
インストール済みのフォント一覧
扉の後のノンブルの設定について
TikZで有向グラフが書きたいです
\documentclass[divpdfmx]{jsarticle}
\newcommand{\bm}[1]{{\mbox{\boldmath $#1$}}}
\usepackage[truedimen,margin=10mm]{geometry}
\usepackage{emathMw}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{pdfpages}
\usepackage{mathrsfs}
\usepackage{ascmac}
\usepackage{color}
\usepackage[all]{xy}
\usepackage{cancel}
\usepackage{framed}
\usepackage{latexsym}
\usepackage{tikz}
\usetikzlibrary{graphs}
\def\qed{\hfill $\Box$}
\pagestyle{empty}
\newcommand{\ctext}[1]{\raise0.2ex\hbox{\textcircled{\scriptsize{#1}}}}
\renewcommand{\baselinestretch}{0.65}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}[every node/.style={circle,fill=cyan,white}]
\node (s) {s};
\node[above right=of s] (a) {a};
\node[below right=of s] (b) {b};
\node[right=1.5cm of a] (c) {c};
\node[right=1.5cm of b] (d) {d};
\node[below right=of c] (t) {t};
\foreach \u / \v in {s/a,s/b,a/b,a/c,b/c,b/d,c/d,c/t,d/t}
\draw[->] (\u) -- (\v);
\end{tikzpicture}
\end{document}
と入力したのですが出力が真っ白になってしまいます.
原因は書き方云々ではなくtexの設定が出来ていないのでしょうか.
よろしくお願いします.