Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

using ortho splines with tikz output doesn't produce orthogonal edges #45

Open
lebedov opened this issue Dec 2, 2015 · 1 comment
Open

Comments

@lebedov
Copy link

lebedov commented Dec 2, 2015

I'm using graphviz 2.38.0 compiled --with-gts on Ubuntu 14.04.3; when I process the following graph with dot2tex -p --prog fdp -f tikz file_name.dot I obtain the attached figure:

digraph {
    graph [splines=ortho];
    node [shape=rect];
    a;  
    b;  
    c;  
    d;  
    e;  
    f;  
    g;  
    h;  
    c -> e;
    c -> b;
    b -> a;
    e -> a;
    e -> d;
    e -> f;
    c -> d;
    b -> f;
    f -> g;
    g -> h;
    h -> e;
}

I
screenshot_2015-12-01_19-14-00

@kjellmf
Copy link
Collaborator

kjellmf commented Mar 15, 2019

Ortho splines are not supported by the tikz output format. A workaround is to use the default pgf format instead.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants