Putting thoughts in a mind map

A mind map visualizes information or ideas. Usually, there's a main concept in the center and major concepts branching outward from it. Smaller ideas start from the major concepts, so a mind map can look like a spider web.

In this recipe, we will draw a mind map of the concepts of TeX.

How to do it...

We will use the TikZ mindmap library. Follow these steps:

  1. Start with a document class:
    \documentclass{article}
  2. Load the geometry package with the landscape option so that your wide mindmap will fit the page:
    \usepackage[landscape]{geometry}
  3. Then, load the tikz package:
    \usepackage{tikz}
  4. Next, load the mindmap TikZ library:
    \usetikzlibrary{mindmap}
  5. Load the dtklogos package to get additional TeX-related logo macros:
    \usepackage{dtklogos} ...

Get LaTeX Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.