sk23
sk23

Reputation: 31

How to draw nodes and edges in blog

I started writing a blog. I am new at it. can someone help me how to draw nodes/edges and also colouring/editing like this:

screenshot

Is there any software or any website, where i can get help?

Example: like this post, I want to draw image like that and how to code like that in a box.

Upvotes: 1

Views: 514

Answers (2)

MattAllegro
MattAllegro

Reputation: 7345

Another option is Cacoo, an Online Diagram and Flowchart Software. Free trial and easy WYSIWYG interface available on cacoo.com. I did with Cacoo two diagrams that I included in my BSc thesis and both were very similar to the one included in your question.

Instead, if using LaTeX, the package forest may be appropriate.

Upvotes: 1

Inon Peled
Inon Peled

Reputation: 711

Here are several ways of drawing a "professional" looking graph:

  1. Use Graphviz, e.g. with a graph defined through a .dot file.
  2. Use tikz in LaTeX, e.g. in Overleaf.
  3. Draw it manually in e.g. Google Slides, and stylize it with e.g. Times New Roman font.

The first two approaches have the advantage that you don't draw anything directly, but rather define the graph textually, which also makes it easy to edit later if needed.

Upvotes: 1

Related Questions