[Tex/LaTex] How to make these two diagrams in Beamer

beamertikz-pgf

Consider:

Enter image description here

How do I make diagram 1 and 3 in the following picture in Beamer?

For example, I tried:

\documentclass[border=10pt]{standalone}
%%%<
\usepackage{verbatim}
%%%>

\usepackage{smartdiagram}
\begin{document}

\smartdiagram[constellation diagram]
    {Love,Trust,Self-control,Journey,Obedience}

\end{document}

It looks similar to diagram 3, but the arrow is in the opposite direction.

Best Answer

All examples from the documentation of smartdiagram


Diagram 1: (with a little help from https://tex.stackexchange.com/a/263961/36296)

\documentclass[border=10pt]{standalone} 
\usepackage{smartdiagram}

\begin{document}

\smartdiagramset{
  /tikz/connection planet satellite/.append style={<-},
  /tikz/satellite/.append style={rectangle,rounded corners=5mm},
}

\smartdiagram[constellation diagram]{
  Build a program,Set up,Run,Analyze,Modify Add,Check
}

\end{document}

enter image description here


Diagram 2:

\documentclass[border=10pt]{standalone} 
\usepackage{smartdiagram}
\begin{document}

\smartdiagramset{planet color=orange!60,
  distance planet-satellite=3cm
 }
 \smartdiagram[connected constellation diagram]
  {Build a program,Set up,Run,Analyze,Modify~/\\ Add,Check}

\end{document}

enter image description here


Diagram 3:

\documentclass[border=10pt]{standalone} 
\usepackage{smartdiagram}
\begin{document}

\smartdiagram[constellation diagram]{
 Build a program,Set up,Run,Analyze,Modify~/\\ Add
}

\end{document}

enter image description here


Diagram 4:

\documentclass[border=10pt]{standalone} 
\usepackage{smartdiagram}
\begin{document}

\smartdiagram[bubble diagram]{%
  Build a program,Set up,Run,Analyze,Modify Add,Check
}

\end{document}

enter image description here