()
in next line I tried \\
after but it does not work. For example, instead of this.
Code: Select all
Schmidt Hammer (0.1003)
Code: Select all
Schmidt Hammer
(0.1003)
Code: Select all
\documentclass{article}
\usepackage{tikz}
\usepackage{tikz-qtree}
\usetikzlibrary{trees} % this is to allow the fork right path
\begin{document}
\begin{center}
\begin{tikzpicture}[-,thick]
\node {Total Rating (1.0)} [sibling distance=6cm]
child {node {Literature Knowledge \newline (0.1147)}
}
child {node {Schmidt Hammer (0.1003)}
}
child {node {Direct compression test (0.7672)}
};
\end{tikzpicture}
\end{center}
\end{document}