\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{trees}
\begin{document}
\begin{tikzpicture}[scale=1, level distance=2.5cm,
level 1/.style={sibling distance=4.5cm},
level 2/.style={sibling distance=2.5cm}]
\node {Up}
child {
node {Down}
child {node {X, 1-X}}
child {node {Up}
child {node {I, 1-I}}
child {node {Down}
child {node {Y, 1-Y}}
child {node {Up}
child {node {I, 1-I}}
child {node {W-C_u, W+C_d}}
}
}
}
};
\end{tikzpicture}
\end{document}
답변1
내가 생각하는 문제는 마지막 노드의 레이블에 수학 모드 외부에서 밑줄을 사용하고 있다는 것입니다.
다음 중 하나를 사용할 수 있습니다.
child {node {$W-C_u$, $W+C_d$}}
child {node {W-C\textsubscript{u}, W+C\textsubscript{d}}}
child {node {W-C\_u, W+C\_d}}
당신이 실제로 출력으로 찾고있는 것에 따라.