TikZ Shape: Diamond

  • This tutorial is one of post series about predefined TikZ shapes, or more precisely TikZ node shapes. In this post, we will learn how to create a TikZ diamond node shape, change its size, its color and access to all its anchors.

Node shape diamond in TikZ

Diamond shape is a part of the shapes.geometric TikZ library, so to work with this shape, we need to declare the library. We need to add the following piece of code after the TikZ package declaration:

\usetikzlibrary{shapes.geometric}

A diamond shape can be drawn by using the option diamond to the \node command. The following code creates a diamond node named (d) at coordinate (0,0).

\documentclass[border=0.2cm]{standalone}

% Required package and library
\usepackage{tikz}
\usetikzlibrary{shapes.geometric}

\begin{document}

\begin{tikzpicture}
	\node[diamond] (d) at (0,0) {};
\end{tikzpicture}

\end{document}

Compiling this line of code displays nothing. The diamond node will be drawn only if we provide draw option to the node command as follows:

\documentclass[border=0.2cm]{standalone}

% Required package and library
\usepackage{tikz}
\usetikzlibrary{shapes.geometric}

\begin{document}

\begin{tikzpicture}
	\node[diamond,draw] (d) at (0,0) {};
\end{tikzpicture}

\end{document}

Draw diamond in TikZ LaTeX

Add text to the diamond node

The previous code creates a diamond node with empty content. Text can be added inside the diamond node by putting it between the curly braces {} as follows.

\documentclass[border=0.2cm]{standalone}

% Required package and library
\usepackage{tikz}
\usetikzlibrary{shapes.geometric}

\begin{document}

\begin{tikzpicture}
	\node[diamond,draw] (d) at (0,0) {Diamond};
\end{tikzpicture}

\end{document}

To fit the text inside the shape, this line of code yields to a diamond with a size depends on its content:

Add text content to Diamond shape in TikZ

Change text color of the diamond node

In the previous section, we have added content to the diamond node and now we would like to change the text color. This can be achieved by providing the option text = <color> to the \node command:

\documentclass[border=0.2cm]{standalone}

% Required package and library
\usepackage{tikz}
\usetikzlibrary{shapes.geometric}

\begin{document}

\begin{tikzpicture}

\node[diamond,
	draw,
	text = red] (d) at (0,0) {Diamond};

\end{tikzpicture}

\end{document}

Diamond shape in TikZ

Add filling color to a node

The diamond node can be filled with any color using the option fill = <color>. Here is an illustrative example of a light pink filling with our red text:

\documentclass[border=0.2cm]{standalone}

% Required package and library
\usepackage{tikz}
\usetikzlibrary{shapes.geometric}

\begin{document}

\begin{tikzpicture}

\node[diamond,
	draw,
	text = red,
	fill = pink!50] (d) at (0,0) {Diamond};

\end{tikzpicture}

\end{document}

Fill diamond shape TikZ LaTeX

Change the border line color of a node

The diamond border color can be modified (default is black) by providing the color name to the draw option draw = <color>. Here is an example of a diamond filled with light pink, has red text and purple borders:

\documentclass[border=0.2cm]{standalone}

% Required package and library
\usepackage{tikz}
\usetikzlibrary{shapes.geometric}

\begin{document}

\begin{tikzpicture}

\node[diamond,
	draw = purple,
	text = red,
	fill = pink!50] (d) at (0,0) {Diamond};

\end{tikzpicture}

\end{document}

Change border color diamond shape TikZ

Change the size of a diamond node

We mentioned above that the size of a diamond depends on its content. This is always true and we can set only the minimum size of a diamond. We can arrange a minimum size for its width with minimum width option, and similarly, we can set its height with minimum height option. Below, we set the minimum width value to 2.5 cm and the minimum height value to 3 cm.

\documentclass[border=0.2cm]{standalone}

% Required package and library
\usepackage{tikz}
\usetikzlibrary{shapes.geometric}

\begin{document}

\begin{tikzpicture}

\node[diamond,
	draw = purple,
	text = red,
	fill = pink!50,
	minimum width = 2.5cm,
	minimum height = 3cm] (d) at (0,0) {Diamond};

\end{tikzpicture}

\end{document}

Change size of diamond shape in TikZ LaTeX

If we need both the width and the length sizes to be the same, we can use minimum size option.

  • We can also change the width/height ratio of the diamond, using the aspect option. By default, the option is set to 1. To have a slimmer diamond, we can set it to a parameter smaller than 1. 

Anchors of a diamond node

The advantage of using a node diamond is that it defines a set of anchors that we can use to get coordinates of the node borders or to position nodes with accuracy with respect to given coordinates. By default, node center is positioned at the provided coordinates ((0,0) for the previous examples).

Anchors diamond shape TikZ LaTeX
Anchors angles Diamond shape TikZ LaTeX

(d.west) represents the coordinates of the point located at the west of the diamond node where d is the node name. We can also use angles where (d.270) is the coordinates of the point located at the south of the diamond node.

Adding anchor = west will place the node point (d.west) at the provided coordinate (0,0). Check this post: how to annotate an image in LaTeX (Positioning Nodes using Anchors section).

Outer separation

The above anchors can be moved outside the node border by adding outer sep = <value> to the node command. Here is an example of anchors moved outside the node border with 10pt.

Outer sep diamond shape TikZ
  • We've reached the end of this tutorialIf you have any questions or remarks, leave me a comment below or reach me via e-mail at admin@latexdraw.com, I will be happy to hear from you!