Giter Club home page Giter Club logo

Comments (4)

diohabara avatar diohabara commented on September 6, 2024

状態遷移図を書くときは次のように

\begin{center}
  \begin{tikzpicture}
    \node[state] (R) {R};
    \node[state] (G) [below right=of R] {G};
    \node[state] (B) [below left=of R] {B};

    \path
      (R)
        edge node {0.2} (G)
        edge [loop above] node {0.8} (R)
      (G)
        edge [loop right] node {0.9} (G)
        edge node {0.1} (B)
      (B)
        edge [loop left] node {0.9} (B)
        edge node {0.1} (R)
    ;

    \node [right=1cm,text width=7cm] at (G)
    {
      \begin{itemize}
        \item Rの直後には、RとGのどちらかが、それぞれ0.8と0.2の確率で光る。
        \item Gの直後には、GとBのどちらかが、それぞれ0.9と0.1の確率で光る。
        \item Bの直後には、BとRのどちらかが、それぞれ0.9と0.1の確率で光る。
      \end{itemize}
    };
  \end{tikzpicture}
\end{center}

from open_inshi.

diohabara avatar diohabara commented on September 6, 2024

tikzでノードが重ならないようにする工夫

\node[node, below right = 3cm and 2cm of s1] (s2) {$s_{2}$};
% \node[設定した任意の設定名, ラベルs1に対して下に3cm,右に2cmの位置] (ラベル) {円の中に書きたい文字列};

from open_inshi.

diohabara avatar diohabara commented on September 6, 2024

tableを手書きしなくて済むサイト

https://www.tablesgenerator.com/

from open_inshi.

diohabara avatar diohabara commented on September 6, 2024

タイムチャートを作るのに使える
https://rawgit.com/osamutake/tchart-coffee/master/bin/editor-offline.html

from open_inshi.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.