Gert Van den Eyne
Gert Van den Eyne
Hi Anybody any tips to get rainbow parentheses working with lervag/vimtex (https://github.com/lervag/vimtex)? It seems that the syntax definitions in vimtex mess up colored parenthesis (if I manually switch syntax to...
retain-explicit-plus does not apply to the exponent in scientifc notation, print-implicit-plus does
LuaLaTeX, siuntix 3.0.14 ``` \documentclass{minimal} \usepackage{siunitx} \sisetup{ exponent-mode=scientific, group-digits=false, } \begin{document} \num[print-unity-mantissa=false, print-zero-exponent=true, retain-explicit-plus=true]{e+01}, \num[print-unity-mantissa=false, print-zero-exponent=true, retain-explicit-plus=true]{e+00}, \num[print-unity-mantissa=false, print-zero-exponent=true, retain-explicit-plus=true]{e-00}, \num[print-unity-mantissa=false, print-zero-exponent=true, retain-explicit-plus=true]{e-01} \num[print-unity-mantissa=false, print-zero-exponent=true, print-implicit-plus=true]{e+01}, \num[print-unity-mantissa=false, print-zero-exponent=true, print-implicit-plus=true]{e+00}, \num[print-unity-mantissa=false,...
``` using GenericLinearAlgebra svd(big.([1,2;3,4])) ``` returns ``` UndefVarError: svd not defined Stacktrace: [1] top-level scope @ In[2]:1 [2] eval @ .\boot.jl:373 [inlined] [3] include_string(mapexpr::typeof(REPL.softscope), mod::Module, code::String, filename::String) @ Base .\loading.jl:1196...
``` julia> versioninfo() Julia Version 1.10.4 Commit 48d4fd4843 (2024-06-04 10:41 UTC) Build Info: Official https://julialang.org/ release Platform Info: OS: Windows (x86_64-w64-mingw32) CPU: 12 × 13th Gen Intel(R) Core(TM) i5-1335U WORD_SIZE:...
When plotting the structure of a sparse matrix using `spy`, the "matrix structure" is not preserved... Code snippet: ``` using SparseArrays, CairoMakie, LinearAlgebra n=100; A = sprand(n,n,1/n) + sparse(Diagonal(rand(n))); A[:,1]...