JuliaTeX / TikzGraphs.jl

This library generates graph layouts using the TikZ graph layout package.
Other
77 stars 18 forks source link

Undirected Graphs have edge arrows #14

Closed tawheeler closed 7 years ago

tawheeler commented 7 years ago
using TikzGraphs
using LightGraphs
g = Graph(4)
add_edge!(g, 1, 2)
add_edge!(g, 2, 3)
TikzGraphs.plot(g)

Undirected graphs are currently plotted with arrows.

chelseas commented 7 years ago

I seem to be having this problem again.

mykelk commented 7 years ago

@chelseas did you do Pkg.checkout("TikzGraphs")? I don't think a release has been tagged, so that's the only way to get it right now. We should tag something soon.

chelseas commented 7 years ago

I did that, but I'm still getting arrows. Not a huge deal, but here's an example in an IJulia notebook.

On Fri, Mar 17, 2017 at 9:11 PM, Mykel Kochenderfer < notifications@github.com> wrote:

@chelseas https://github.com/chelseas did you do Pkg.checkout("TikzGraphs")? I don't think a release has been tagged, so that's the only way to get it right now. We should tag something soon.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/sisl/TikzGraphs.jl/issues/14#issuecomment-287514903, or mute the thread https://github.com/notifications/unsubscribe-auth/AOMLyndeYC0Kr5JjUGE51P9rhblPk9eXks5rm1lggaJpZM4L4jMW .

mykelk commented 7 years ago

@chelseas it looks like the notebook was not attached.

mykelk commented 7 years ago

When I run your notebook, I get this: image Are you sure you did Pkg.checkout("TikzGraphs") and not just Pkg.add("TikzGraphs")?