I am drawing a rectangle which is split into 2 parts:
\documentclass[runningheads,orivec]{llncs}
\usepackage{tikz}
\usetikzlibrary{positioning,shapes,shadows,arrows}
\begin{document}
\tikzstyle{abstract}=[rectangle, draw=black, rounded corners, fill=white!20, drop shadow,
text centered, anchor=north, text=black, text width=3cm, scale=0.8]
\begin{figure}[H]
\centering
\begin{tikzpicture}[node distance=1cm,]
\node(domain) [abstract, rectangle split, rectangle split parts=2, text width=7cm, text height = 0.1cm, text justified]
{
\begin{center}hehe\end{center}
\nodepart{second}haha
};
\end{tikzpicture}
\end{figure}
\end{document}
There is just "hehe" in the first part, but the height is too much... text height = 0.1cm does not seem to work... Does anyone know how to reduce the height of the first part, let it adjusted in according to the text?
