这可能与打印机设置和/或 pdf 文件的拼合选项有关(我对此一无所知),所以我可能偏离了主题,但我需要有关以下问题的建议/指导。
这是我的 pdf 上带有点的 TikZ 图片。
一旦打印出来,点就会被直线取代。
我\includegraphics
有以下 TikZ 的 pdf standalone
。我不认为这与我的图表本身有关,但万一
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[font=\sffamily,
level distance=1cm,
level 1/.style={sibling distance=2cm},
level 2/.style={sibling distance=3.0cm},
level 3/.style={sibling distance=3cm},
level 4/.style={sibling distance=1.5cm},
]
\node (cash) {Cash}
child { node {Term}
child { node (future) {Futures}}
child { node[top color=red,bottom color=red,rounded corners,minimum height = 0.7cm,text=white] (forward) {Forwards}
child { node {Bonds}
child { node {Fix}}
child { node {Floating}}
}
child { node {Swaps}
child { node {IRS}}
child { node {TRS}}
}
child { node (options){Options}
child { node (vanillas) {Vanillas}}
child { node (exotics) {Exotics}}
}
}
} ;
\draw[latex-latex, dotted] (forward.west) -- (future.east) ;
\draw[latex-latex, dotted] (forward.north) -- (cash.east) ;
\draw[latex-latex, dotted] (future.north) -- (cash.west) ;
\draw[latex-latex, dotted] (options.north) -- (cash.east) ;
\draw[-latex, dotted] (vanillas.south) to [bend right] (exotics.south) ;
\end{tikzpicture}
\end{document}