Forum digitalis

3.2 Basics

Introduction

The core of TikZ is the tikzpicture environment. After including the package with \usepackage{tikz}, graphics can be defined directly within the LaTeX document. Everything between \begin{tikzpicture} and \end{tikzpicture} belongs to the graphic. Shapes, lines, nodes, and styles are described exclusively via commands, not through a graphical interface.

% In the preamble \usepackage{tikz} % In the document \begin{tikzpicture} % sketch \end{tikzpicture}

Key points