その他一覧へ戻る

マインドマップ

鉄TeX機能紹介/TikZサンプル/マインドマップ.tex鉄TeX機能紹介 / TikZhybrid

レンダリング結果

1ページ / 同名PDFあり
マインドマップ preview
PDFを開く
TeXソース
TeXソース
入力コード
\documentclass[b5j,10pt,twoside]{tetsujsarticle}
\usepackage{tetsuchem}

\begin{document}

\pagecolor{black!20}

~\br{-3}\vfil
\noindent\hfil
\begin{tikzpicture}
  \begin{scope}[
    mindmap,
    every node/.style={concept, circular drop shadow,execute at begin node=},
    タイトル/.append style={
      concept color=black,
      fill=white, line width=1ex,
      text=black, font=\Large\bgtfamily},
    text=white,
    溶解度/.style={concept color=red},
    希薄溶液の性質/.style={concept color=blue},
    ヘンリーの法則/.style={concept color=purple!90!black},
    入試問題の解法/.style={concept color=green!50!black},
    grow cyclic,
    level 1/.append style={level distance=4.5cm,sibling angle=90,font=\large\gtfamily},
    level 2/.append style={level distance=3cm,sibling angle=45,font=\gtfamily}]
    
    
\node [タイトル]  {第4回\\溶液の性質}
    child [溶解度] { node [yshift=-1cm] {溶解度}
      child { node {固体の溶解度} }
      child { node {気体の溶解度} }
      child { node {溶解度の温度変化} }
      child { node {再結晶} }
    }
    child [希薄溶液の性質] { node [yshift=-1cm] {希薄溶液の性質}
      child { node {蒸気圧降下} }
      child { node {ラウールの法則} }
      child { node {沸点上昇} }
      child { node {凝固点降下} }
      child { node {浸透圧} }
      child { node {分子量測定} }
    }
    child [ヘンリーの法則] { node [yshift=1cm] {ヘンリーの法則}
      child { node {ヘンリーの法則の定義} }
      child { node {標準状態に換算した体積} }
      child { node {その分圧下における体積} }
      child { node {ヘンリーの典型問題} }
    }
    child [入試問題の解法] { node [yshift=1cm] {入試問題の解法}
      child { node {水和水付き溶解度計算} }
      child { node {電離・会合の考慮} }
      child { node {U字管浸透圧問題} }
      child { node {定積容器でのヘンリー問題} }
    };
\end{scope}

\end{tikzpicture}

\end{document}