1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
name: Any Report
description: File a general purpose report
# title:
labels: ["bug", "user question/help"]
# assignees:
body:
- type: markdown
attributes:
value: |
Please check it hasn't already been reported in the [issue tracker](../).
Thanks for taking the time to fill this out! It really helps us a lot.
- type: markdown
attributes:
value: |
First of all, let's have a look to your environment: run the following Python code snippet and paste the output below.
```python
import platform
import sys
import subprocess
from importlib.metadata import version
print('System: ' + platform.platform())
print('Python: ' + sys.version)
print('SciencePlots: ' + version('scienceplots'))
print('Matplotlib: ' + version('matplotlib'))
print('LaTeX distro:')
subprocess.run(["latex", "-v"])
```
- type: textarea
id: env
attributes:
label: Environment
description: Paste here the output of the code above
placeholder: |
System: Windows-10-10.0.19044-SP0
Python: 3.10.4 (tags/v3.10.4:9d38120, Mar 23 1984, 24:00:00) [MSC v.1929 64 bit (AMD64)]
SciencePlots: 0.0.0
Matplotlib: 0.0.0
LaTeX distro:
pdfTeX 3.141592653589793238-pi (TeX Live 2022)
kpathsea version 6.3.4
Copyright 2022 Han The Thanh (pdfTeX) et al.
There is NO warranty. Redistribution of this software is
covered by the terms of both the pdfTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the pdfTeX source.
Primary author of pdfTeX: Han The Thanh (pdfTeX) et al.
Compiled with libpng 1.6.37; using libpng 1.6.37
Compiled with zlib 1.2.11; using zlib 1.2.11
Compiled with xpdf version 4.03
CompletedProcess(args=['latex', '-v'], returncode=O)
# value: ""
render: "Python console"
validations:
required: true
- type: textarea
id: styles
attributes:
label: Affected styles
description: >
List all styles you are using.
Do not miss anyone, they may change the behaviour entirely.
placeholder: |
["science", "no-latex"]
# value: ""
render: "Python console"
validations:
required: true
- type: textarea
id: user-description
attributes:
label: "Describe the issue here"
# description: ""
placeholder: "What do you expect? What happens?"
# value: ""
validations:
required: true
- type: textarea
id: how-to-reproduce
attributes:
label: "How can we replicate it? What have you tried? Please, add a reproducible example"
description: "Paste inline code between backticks [`] and code blocks between 3 [```]"
placeholder: "Be as accurate as possible, it will help us very much."
# value: ""
validations:
required: true
- type: textarea
id: extra
attributes:
label: "Extra info"
description: "Please, specify anything else that may be of help (e.g. links to other issues that may be related anywhere, StackOverflow posts, etc.)"
# placeholder: ""
# value: ""
validations:
required: false
|