baloe
baloe
```latex \documentclass{article} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage{amsmath} \usepackage{mathtools} % fixes some stuff of amsmath \usepackage{bm} \usepackage{accents} %\usepackage[cdmath=false,cdfont=heavy]{tudscrfonts} \begin{document} $ \tilde{f} \quad \bm{ { \tilde{f} } } $ \end{document} ``` ### With the...
I wanted to assign Mirror Curser Down and Up with Ctrl-Shift-Down and Ctrl-Shift-Up, respectively. I did so through Options > Configure ... as I have done many times before. The...
Following your instructions [here](https://docs.easybuild.io/en/latest/Installation.html#installing-easybuild-with-easybuild) I am trying to install easybuild as a module. I have already installed lmod. I thus run ```bash source /etc/profile.d/modules.sh export EB_TMPDIR=/tmp/$USER/eb_tmp python3 -m pip install...
I am trying to install a foss collection with the following command. ``` eb --prefix $PATH_MODULES -Dr foss-2020a.eb ``` but eb quits saying that ``` ERROR: Failed to process easyconfig...
Guten Tag, vielen Dank für diese Vorlagen, doch leider gelingt mir die Installation nicht, die Installationsanweisungen sind da wenig hilfreich. Ich habe folgendes gemacht: ### Was ich unternommen habe ####...
I followed the instructions in the README, i.e., I did a ```bash python3 setup.py install ``` first, which produced sane output. But when I run `from interp3d import interp_3d`, I...
```latex \documentclass{article} \usepackage[warnundef]{jabbrv} \usepackage{svg} \begin{document} test \includesvg{figure.svg} \end{document} ``` produces error ``` (/soft/texlive/2022/texmf-dist/tex/latex/svg/svg.sty ! Undefined control sequence. \svg@Provides ... \ProvidesPackage {#1}[#3\space( #2)]\unexpanded \expandaft... ``` switching the order in which of...
I am wondering about the right datatype to use for Hypre routines in a Fortran code. The Hypre manual provides a conversion table from C to Fortran on page 80,...
Are you planning on publishing this extension in the open vsx regestry so it can be installed in vscodium as well? That would be absolutely fantastic. https://github.com/VSCodium/vscodium/blob/master/DOCS.md#extensions-marketplace
Hi, looks like the library is no longer compatible with recent versions of matplotlib. ```python import s3dlib.surface as s3d import numpy as np surface = s3d.Surface3DCollection(np.array([[0,0,0],[1,0,0],[1,1,0],[0,1,0]]), [np.arange(4),]) ``` produces ```...