mirror of
https://codeberg.org/Yael-II/MSc2-Project-Chaos.git
synced 2026-03-14 20:06:28 +01:00
105 lines
2.5 KiB
Plaintext
Executable File
105 lines
2.5 KiB
Plaintext
Executable File
#@ Author: Moussouni, Yaël (MSc student)
|
|
#@ Institution: Université de Strasbourg, CNRS, Observatoire astronomique
|
|
# de Strasbourg, UMR 7550, F-67000 Strasbourg, France
|
|
#@ Date: 2025-01-01
|
|
#
|
|
#Licence:
|
|
#Order and Chaos in a 2D potential
|
|
#Copyright (C) 2025 Yaël Moussouni (yael.moussouni@etu.unistra.fr)
|
|
# Bhat, Junaid Ramzan (junaid-ramzan.bhat@etu.unistra.fr)
|
|
#
|
|
#YII_1.mplstyle
|
|
#Copyright (C) 2025 Yaël Moussouni (yael.moussouni@etu.unistra.fr)
|
|
#
|
|
#This program is free software: you can redistribute it and/or modify
|
|
#it under the terms of the GNU General Public License as published by
|
|
#the Free Software Foundation; either version 3 of the License, or
|
|
#(at your option) any later version.
|
|
#
|
|
#This program is distributed in the hope that it will be useful,
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
#GNU General Public License for more details.
|
|
#
|
|
#You should have received a copy of the GNU General Public License
|
|
#along with this program. If not, see https://www.gnu.org/licenses/.
|
|
|
|
### Axes
|
|
axes.titlesize : large
|
|
axes.labelsize : large
|
|
|
|
### Lines
|
|
lines.linewidth : 1.0
|
|
hatch.linewidth: 0.25
|
|
lines.markersize: 5
|
|
|
|
patch.antialiased : True
|
|
|
|
### Ticks
|
|
xtick.top: True
|
|
xtick.bottom: True
|
|
xtick.major.size: 4.0
|
|
xtick.minor.size: 2.0
|
|
xtick.major.width: 0.5
|
|
xtick.minor.width: 0.5
|
|
xtick.direction: in
|
|
xtick.minor.visible: True
|
|
xtick.major.top: True
|
|
xtick.major.bottom: True
|
|
xtick.minor.top: True
|
|
xtick.minor.bottom: True
|
|
xtick.major.pad: 5.0
|
|
xtick.minor.pad: 5.0
|
|
ytick.labelsize: large
|
|
|
|
ytick.left: True
|
|
ytick.right: True
|
|
ytick.major.size: 4.0
|
|
ytick.minor.size: 2.0
|
|
ytick.major.width: 0.5
|
|
ytick.minor.width: 0.5
|
|
ytick.direction: in
|
|
ytick.minor.visible: True
|
|
ytick.major.left: True
|
|
ytick.major.right: True
|
|
ytick.minor.left: True
|
|
ytick.minor.right: True
|
|
ytick.major.pad: 5.0
|
|
ytick.minor.pad: 5.0
|
|
xtick.labelsize: large
|
|
|
|
### Legend
|
|
legend.frameon: True
|
|
legend.fontsize: 9.0
|
|
|
|
### Figure size
|
|
figure.figsize: 5.9, 3.9
|
|
figure.subplot.left: 0.1
|
|
figure.subplot.bottom: 0.175
|
|
figure.subplot.top: 0.90
|
|
figure.subplot.right: 0.95
|
|
figure.autolayout: True
|
|
figure.dpi: 150
|
|
|
|
### Fonts
|
|
font.family: serif
|
|
font.serif: Latin Modern Roman
|
|
font.size: 9.0
|
|
text.usetex: true
|
|
|
|
### Saving figures
|
|
savefig.format: pdf
|
|
savefig.dpi: 300
|
|
savefig.pad_inches: 0
|
|
path.simplify: True
|
|
|
|
### Cycler
|
|
axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB'])
|
|
|
|
### Colormap
|
|
image.cmap: cividis
|
|
|
|
|
|
### LaTeX
|
|
text.latex.preamble: \input{~/.config/matplotlib/stylelib/yii_plot.tex}
|