ryofurue
ryofurue
The following code ```` using Plots plotlyjs() # without this line, this code generates a static graph. plot(0:10, sin.((0:10)/3)) ```` keeps emitting ```` UndefVarError: setexcludinghandlers! not defined Stacktrace: [1] set_nosync(ob::Observables.Observable{Dict{Any,...
(I haven't been able to send a support log. See below.) My problem may be the same as https://github.com/retorquere/zotero-better-bibtex/issues/2169 I'm not sure whether this report of mine is helpful or...
I install Sequential via Homebrew and am using the latest version, I think. (It's 2.1.2 .) On Big Sur, no thumbnails are displayed. "View" > "Show Thumbnails" shifts the main...
**Title: Contourf plots outside the `clims` range** [Sorry I forgot to add a proper title. I don't know how to edit it. So, I've just written what may be a...
As shown #4805, `PlotLy` has the capability of having one open-ended contour level on each end: ```julia using Plots plotly() # GR doesn't support open ended contour levels xs=-8:1:8 ys=-8:1:8...
## Details The code ```julia using Plots xs=-5:1:5 ys=-5:1:5 var = [ x^2 + y^2 for x in xs, y in ys] p = contourf(xs, ys, var; color=:redsblues, levels=5:5:40) savefig(p,...
Suppose that the contour levels are `[z1, z2, . . . , zn]`. `Plotly` plots values `z < z1` and `z > zn`, which is very nice: ```julia using Plots...
[Please search existing issues to avoid duplicates -> I searched but there are so many issues that contain my search words . . . ] Description of the problem: I...
See https://tex.stackexchange.com/questions/685511/beamer-inserts-line-break-at-strange-place/690742#690742 As in the above discussion, a workaround is to insert a blank line before the `quote` env. As with this other issue https://github.com/josephwright/beamer/issues/530#issuecomment-1630332337 having to insert a blank...
**Describe the bug** A `StepRangeLen` doesn't work as a variable. You need to convert it to an Array with `collect()`. [Sorry. I looked at the error message, but I don't...