17/03/31 00:26:42.57 .net
>>622
minimalなんてドキュメントクラスあるんですね。知らなかった
URLリンク(tex.stackexchange.com)
\documentclass{jarticle}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}
\node[rectangle,text width=10cm] (a) {今日は晴れ};
\node[rectangle,below=2cm of a,text width=3cm] (b) {明日は雨?};
\node[rectangle,right=of b,text width=3cm] (c) {明後日は曇り};
\draw[-latex,line width=5mm, blue!10] (a) -- (b);
\end{tikzpicture}
\end{document}
というのをタイプセットしてうまくいきました。
ありがとう。使わせてもらいますです