I am trying to create the following diagram:
My MWE is as follows:
\documentclass[a4paper,12pt]{extarticle}
\usepackage{geometry}
\geometry{
a4paper,
total={170mm,257mm},
left=20mm,
top=20mm,
}
\usepackage{smartdiagram}
\usesmartdiagramlibrary{additions}
\usepackage{tikz}
\usetikzlibrary{arrows}
\begin{document}
\bigbreak
\begin{minipage}[c][8cm]{\textwidth}
\centering
\smartdiagramset{
uniform color list=orange!60!yellow for 5 items,
circular final arrow disabled=false,
circular distance=2.75cm,
arrow tip=to,
arrow line width=2pt,
additions={
additional item bottom color=orange!60!yellow,
additional item border color=gray,
additional item shadow=drop shadow,
additional item offset=1.65cm,
additional arrow line width=2pt,
additional arrow tip=to,
additional arrow color=orange!60!yellow,
}
}
\smartdiagramadd[circular diagram]{
aa,bb,cc,dd
}{
above of module1/Bananas,right of module4/Pears
}
\smartdiagramconnect{to-}{module1/additional-module1}
\smartdiagramconnect{-to}{module4/module1} % Rectify this line
\smartdiagramconnect{-to}{module4/additional-module2}
\end{minipage}
\end{document}
Question
- How can I put the string "No" on top of the curved arrow from
ddtoaa - How can I put the string "Yes" on top of the straight arrow from
ddtoPears



\smartdiagramconnect{-to,bend right,shorten >=8pt,shorten <=8pt,black,"no" midway,below}{module4/module1}) and the text and the arrow became black. :/ – 3kstc Jan 10 '19 at 04:54