Questions tagged [smartdiagram]

This package provides a way to easily draw diagrams in documents and presentations from a list of items thanks to TikZ.

152 questions
8
votes
1 answer

Why does smartdiagram replace the Greek letter \xi by a number?

Consider the MWE \documentclass{beamer} \usepackage{smartdiagram} \begin{document} \begin{frame}[plain] \smartdiagramanimated[descriptive diagram]{ {$a$, $\alpha$}, {$b$,$\beta$}, {$x$,$\xi$}} \end{frame} \end{document} Instead of the…
user121799
8
votes
2 answers

smartdiagram: How to remove gradient from background color?

I'm drawing this: How can I remove the gradient in the background of each node? I want to set a solid color for each element. Code for the above example: \documentclass{article} \usepackage{smartdiagram} \begin{document} \tikzset{ every…
L42
  • 405
7
votes
1 answer

How to add text above some arrows?

I am trying to create the following diagram: My current output is: MWE My MWE is as follows: \documentclass[a4paper,12pt]{extarticle} \usepackage{geometry} \geometry{ a4paper, total={170mm,257mm}, left=20mm, top=20mm, …
3kstc
  • 931
  • 6
  • 22
7
votes
2 answers

Arrow direction and shape color in smart diagram

I want to make following diagram- Below is my code of smartdiagram- \begin{figure} \centering \smartdiagramset{back arrow disabled=true, module minimum width=2cm, module minimum height=2cm, module x sep=3cm, …
ravi
  • 1,618
6
votes
3 answers

Label on arrows in smartdiagram

I have a flow diagram made using smartdiagram . It produces the diagram as shown below: I want to add some text labels to the arrows, to appear something like this: How can this be achieved within smartdiagram or otherwise? MWE is appended…
Damitr
  • 1,889
5
votes
2 answers

How to change the arrow orientation in Smart Diagram?

I am able to create a diagram with Smart Diagram using the code \begin{figure}[htp] \centering \smartdiagram[priority descriptive diagram]{% text1\\text1, text2\\text2, text3\\text3, text4\\text4 } \end{figure} My question are: how is possibile…
Marta
  • 129
4
votes
1 answer

Smartdiagram Package: Distance between sequence diagram elements

as I write in the topic I like to have a little distance between the elements in a sequence diagram. A minimal example: \documentclass[10pt]{beamer} \usepackage{smartdiagram} \begin{document} \begin{frame} \frametitle{A…
pritzky
  • 43
  • 3
4
votes
2 answers

Customize Smartdiagram

I want to customize the following diagram: With following code \documentclass[border=10pt]{standalone} \usepackage{smartdiagram} \begin{document} \smartdiagram[descriptive diagram]{ {XYZ,LOREM IPSUM}, } \end{document} to be…
OOzy Pal
  • 1,571
4
votes
1 answer

Smart diagram environment in LaTeX

I have four questions related to the creation of diagrams in the smartdiagram environment in LaTex that I was not able to find Internet sources for or resolve them myself: 1) How to label the diagram? 2) How to make the frames long enough so they…
Olga
  • 480
4
votes
1 answer

How can I remove shadows from a descriptive diagram?

I have included one descriptive diagram to my beamer slides, and while it is perfect for my needs, I would like to remove the shadows it has by default. I have tried with tikz and adding an additional setting as follows: \tikzset{no…
yoSalv
  • 41
4
votes
1 answer

Smart diagram -> constellation diagram: Change direction of the arrows

I like to describe an algorithm with its input paramter. I decided to take a constellation diagram. The name of the algorithm is the planet and the parameter names are the satellites. But the arrows are showing from the planet to the satellites…
3
votes
2 answers

Rotate Bubble Diagram

I've made a bubble diagram with 4 bubbles around the central bubble. But they're in a "cross" appearance, the 4 bubbles are shown in positions N, S, E and W. I'd like to rotate the surrounding bubbles, making them look more like an "X", or, in the…
3
votes
3 answers

Centering a circular smartdiagram

I have this circular smartdiagram. I am asking for help to center one of the modules at the top and have the remaining three at each side. Here's what I…
mariabc
  • 45
3
votes
0 answers

How do i add 3 dots instead of the arrow between S2 and S3?

\documentclass[10pt,a4paper]{article} \usepackage{smartdiagram} \usetikzlibrary{shapes.geometric} \usesmartdiagramlibrary{additions} \begin{document} \smartdiagramset{uniform sequence color=true,sequence item border color=black,sequence item…
3
votes
2 answers

Bubble smartdiagram with borders?

I was wondering whether there's any way to have smartdiagram do bubbles with borders, e.g. black borders around both planet and satellites. Here's the code I've used trying, though to no avail. Any help much appreciated. \documentclass[11 pt,…
1
2 3