TikZ 图片的数字渲染与印刷渲染

TikZ 图片的数字渲染与印刷渲染

这可能与打印机设置和/或 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}

答案1

它使用 MacTeX(完全更新)在 TeXShop(完全更新)中编译,并直接从 mac(完全更新)预览在 Brother HL2250DN 打印机上打印。

代码打印件的照片

相关内容