A package to create nice looking plots
Will provide a simple interface for creating professional scientific plots in Julia
- Clean, publication-ready theme optimized for scientific figures
- Proper font selection (Times New Roman) suitable for scientific publications
- Color palette for good contrast and readability
- Sensible defaults for plot dimensions, tick marks, and grid lines
- Install the package:
using Pkg Pkg.add(url="https://github.com/maxreiss123/SciencePlt.jl.git")
- Employ the styles as given in examples:
using SciencePlt using Plots using LaTeXStrings x = [i for i in 1:10] y = x .^ 2 #short look what styles are available: list_styles() use_style("science") plot(x,y, title=L"Function: X^2")
- The package was inspired by the great looking SciencePlots
- Setting the defintions to work for Makie.jl
