Cory Simon
Cory Simon
When I pass in e.g. `L"$r/r_o$"` as an `xlabel` in Gadfly, it appears blank. Does Gadfly not support LaTeXStrings?
:heart: Makie generally, but to include these plots in scientific publications, *imperative* for me to include math in my x- and y-axis labels. e.g. there seems to be no "q"...
* allow option for C atoms to be visible by DRAW_SETTINGS * allow option for transparent backgrounds of the atom index's * add function to write svg string to file...
is there a way to not make carbon atoms invisible in the labels? maybe a `kwarg` to be added, `:make_C_visible` for calling this line? https://github.com/mojaie/MolecularGraph.jl/blob/master/src/draw/draw2d.jl#L90
Mac OS Julia 1.8 dev ```julia using MolecularGraph mol_a = smilestomol("C=O") # formaldehyde canvas = SvgCanvas() draw2d!(canvas, mol_a) ``` gives me an error: ``` ERROR: UndefVarError: libcoordgen not defined Stacktrace:...
would be cool to be able to change the edge strokes as dashed, dotted, etc. to denote different classes of edges. e.g. I want to illustrate that there is not...
oddly the node colors are not saving when I save to `.pdf`. after ```julia gp = gplot(SimpleGraph(xtal.bonds), nodefillc=node_colors, nodestrokec=colorant"black", nodestrokelw=0.5) ``` what Pluto.jl displays:  after ```julia draw(PDF("IRMOF-1_graph.pdf", 12cm, 12cm),...
the following code fails: ```julia # make a graph with three connected components graph = SimpleGraph(9) add_edge!(graph, 1, 2) add_edge!(graph, 3, 4) add_edge!(graph, 3, 5) add_edge!(graph, 4, 5) add_edge!(graph, 6,...
I needed to do this and had to dig into the code to find out, so thought it might be worth adding to the docs page. If you think this...
I'm imposing a style inside a module, but it doesn't take effect when I call `PyPlot.jl` functions from this module. see [here](https://github.com/SimonEnsemble/Controlz.jl/blob/master/src/Controlz.jl#L5-L9). ```julia module Controlz using PyPlot # hipster plot...