light kira” post=93711ho aggiornato il mio codice (presa dalla mia tesi, metto in spoiler)
Spoiler
`
\begin{tikzpicture}
[
mindmap,
concept color=blue,
root concept/.append style={fill=blue, line width=1ex,text=white,font=\large\ttfamily},
level 1 concept/.append style={sibling angle=32.7,minimum width=2.5cm},
every node/.style={concept, execute at begin node=\hskip0pt,font=\large\ttfamily}
]
\node[root concept] {Digital Forensic} [clockwise from=60]
child[concept color=red!70!black, text=white] {node[concept] {Computer Forensic}}
child[concept color=red!70!black, text=white] {node[concept] {Risposta agli incidenti}}
child[concept color=red!70!black, text=white] {node[concept] {Smartphone Forensic}}
child[concept color=red!70!black, text=white] {node[concept] {GPS Forensic}}
child[concept color=red!70!black, text=white] {node[concept] {Media Forensic}}
child[concept color=red!70!black, text=white] {node[concept] {Social Media Forensic}}
child[concept color=red!70!black, text=white] {node[concept] {Video, Foto e audio forensi.}}
child[concept color=red!70!black, text=white] {node[concept] {Analisi forense di una fotocamera}}
child[concept color=red!70!black, text=white] {node[concept] {Multiplayer Forensic}}
child[concept color=red!70!black, text=white] {node[concept] {Console Forensic}}
;
\end{tikzpicture}
`
i problemi sono i seguenti:
– come ridimensionare il testo dei “child” così da farli star dentro meglio?
– come ordinare i “child” senza lascaire quel buco in alto a sinisra? considerare che computer forensic deve stare a mezzogiorno 🙂
Ciao,
modifica il tuo codice con:
`{sibling angle=36,minimum width=2.9cm},`
Saluti