我怎么能够
将“Gerichtsverfahren”字样设为红色,“Verkäufer”字样设为蓝色? https://i.stack.imgur.com/1xLfW.png
对收益做同样的事情 - (右边是蓝色,左边是红色)
提前谢谢你——我已经尝试了一切。
\documentclass{article}
\usepackage{istgame}
\begin{document}
\begin{istgame}[sloped,font=\scriptsize, scale=0.7, align=left]
\setistmathTF{0}{0}{1}
\xtdistance{42mm}{120mm}
\istrooto(0){0}
\istb{Gerichtsverfahren, Verkäufer}[a][b]
\istb {Gerichtsverfahren, Verkäufer)}[a][b] \endist
\end{istgame}
\end{document}
答案1
这手动的istgame 在第 6.2.2 节中描述了各种着色动作标签的方法装饰动作标签以及第 6.3.3 节中着色支付的方式装饰收益。
一些例子:
- 要为操作标签和线条着色,请使用
\istb[color]{label}
。下面的 MWE 中说明了这一点\istb[red]{Schlafen}[a]{8}
- 要仅为标签选择颜色,请将颜色后标签,以及位置说明符。请注意,在这种情况下,您应该完整地写出位置,例如,
above
而不是a
。这用 来说明\istb{Schwimmen}[above,blue]{6}
。- 请注意,您也可以将这两者结合起来,以便获得红线和蓝色标签,使用
\istb[red]{label}[blue]
(未说明)
- 请注意,您也可以将这两者结合起来,以便获得红线和蓝色标签,使用
- 要为收益着色,请将颜色放在位置说明符前面的一组额外括号中。在 MWE 中:
\istb{Gerichtsverfahren, Verkäufer}[a]{2}[[green]below]
- 要为标签的一部分着色,请使用
\textcolor{color}{text}
。在 MWE 中:\istb{Gerichts\textcolor{red}{verfahren}, Verkäufer}[a]
代码:
\documentclass{article}
\usepackage{istgame}
\begin{document}
\begin{istgame}[sloped,font=\scriptsize, scale=0.7, align=left]
\setistmathTF{0}{0}{1}
\xtdistance{42mm}{120mm}
\istrooto(0){0}
\istb{Gerichts\textcolor{red}{verfahren}, Verkäufer}[a]
\istb{Gerichtsverfahren, Verkäufer}[a]{2}[[green]below]
\endist
\istrooto(1)(0-1){5}
\istb[red]{Schlafen}[a]{8}
\istb{Schwimmen}[above,blue]{6}
\endist
\end{istgame}
\end{document}
结果: