I'm in the process of creating a Beamer presentation using some tikz concepts, how do I make a mindmap fit to the slide? My code is as follows:
\documentclass[T]{beamer}
\definecolor{links}{HTML}{2A1B81}
\hypersetup{colorlinks,linkcolor=,urlcolor=red}
\usetheme{Frankfurt}
\usecolortheme{dolphin}
\usefonttheme{structuresmallcapsserif}
\usefonttheme{serif}
\usepackage{multicol}
\usepackage{graphicx}
\usepackage{xcolor}
\usepackage{caption}
\usepackage{hyperref}
\usepackage{tikz}
\usetikzlibrary{mindmap}
\usepackage[graphics,tightpage]{preview}
\setbeamertemplate{button}{\tikz
\node[
inner xsep=10pt,
draw=structure!80,
fill=structure!50,
rounded corners=4pt] {\Large\insertbuttontext};}
\title{Presentation Template}
\setbeamercolor{author}{fg=yellow}
\author{asdfasdfa}
\setbeamercolor{date}{fg=yellow}
\date\today
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section*{Outline}
\begin{frame}
\begin{multicols}{2}
\frametitle{Contents}
\tableofcontents
\end{multicols}
\end{frame}
\section{Timeline}
\begin{frame}
\frametitle{ Timeline}
\centering
\end{frame}
\begin{frame}
\begin{tikzpicture}
\path[mindmap,concept color=blue, text=white, transform shape]
node[concept]{bicycle}
child[grow=0, concept color=red]{node[concept]{road bicycle}
child[grow=30]{node[concept]{time trial bicycle}}
child[grow=30]{node[concept]{road racing bicycle}}}
child[grow=60, concept color=black]{node[concept]{mountain bicycle}}
child[grow=120, concept color=orange]{node[concept]{tandem bicycle}};
\end{tikzpicture}
\end{frame}
\end{document}


tikzpicture. So something like\begin{tikzpicture}[scale=0.8]. – Peter Grill Apr 25 '13 at 00:32small mindmapwill also fit onto a standard frame of thebeamerpackage.” You do need to change the direction of the time trial and road racing bicycle nodes to0and60respectively. – Qrrbrbirlbel Apr 25 '13 at 00:57