I have a problem doing a mindmap for a beamer presentation using the tikz library mindmap. As my mindmap does not fit using the small mindmap option I also have to scale it down somehow... In the provided example I added the scaling factor 0.75 on the entire tikz environment. This does the trick, with the great exeption that "the connectors" is distorted.
Is there a solution to my problem?
Thanks in advance!
/D
MWE:
Code: Select all
\documentclass[mathserif]{beamer}
\usepackage{beamerthemesplit}
\usepackage{tikz}
\usetikzlibrary{calc,fadings,mindmap,trees}
\begin{document}
\section{F\"orslag till forsatt arbete}
\begin{frame}\frametitle{\insertsectionhead}
\begin{center}
\begin{tikzpicture}[scale=0.75]
\tikzstyle{every node}=[font=\tiny]
\path[mindmap,concept color=black,text=white,small mindmap, minimum size=0pt,text width=0.5cm]
node[concept] {?}
[clockwise from=0]
child[concept color=green!50!black] {
node[concept] {Rationell dimensionering}
[clockwise from=90]
child { node[concept] {Automatiserad design} }
child { node[concept] {Optimerad armeringsriktning} }
child { node[concept] {Bara fiberarmering i vissa omr\aa den} }
}
child[concept color=blue] {
node[concept] {Rationell konstruktionsprocess}
[clockwise from=-30]
child { node[concept] {Beskriva processen idag} }
child { node[concept] {Samarbete mellan arkitekt och ingenj\"ör} }
child { node[concept] {Optimera processen. Vilka hinder finns idag?} }
}
child[concept color=red] { node[concept] {Fiberarmering}
[clockwise from=-90]
child { node[concept] {Fiber-orientering?} }
child { node[concept] {Statiskt obest\"amda konstruktioner} }
child { node[concept] {Optimera processen. Vilka hinder finns idag?} }
}
child[concept color=orange] { node[concept] {Optimering} };
\end{tikzpicture}
\end{center}
\end{frame}
\end{document}