Skip to content

Create test.txt #50

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/draft-pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# This should be the path to the paper within your repo.
paper-path: ./paper/paper.md
- name: Upload
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: paper
# This is the output path where Pandoc will write the compiled
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions User guides/Advanced/Gaussian_bump/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
In this folder we apply importance sampling to the [Gaussian bump model](https://arxiv.org/abs/1911.00057).
66 changes: 66 additions & 0 deletions User guides/Advanced/Gaussian_bump/mystyle.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# flake8: noqa

from cycler import cycler
# box style
paper_style = {
# Colour cycle
'axes.prop_cycle': cycler(color=['#377eb8', '#ff7f00', '#984ea3',
'#4daf4a', '#a65628', '#f781bf',
'#999999', '#e41a1c', '#dede00']),

# Line styles
'lines.linewidth': 1.3,
'lines.antialiased': True,

# Error bars
'errorbar.capsize': 3, # length of end cap on error bars in pixels

# Font
'font.size': 18.0,

# Axes
'axes.linewidth': 1.5,
'axes.titlesize': 'x-large',
'axes.labelsize': 'large',
'axes.spines.top': True,
'axes.spines.right': True,

# Ticks
'xtick.major.size': 6,
'xtick.minor.size': 4,
'xtick.major.width': 1.5,
'xtick.minor.width': 1.5,
'xtick.major.pad': 6,
'xtick.minor.pad': 6,
'xtick.labelsize': 'medium',
'xtick.direction': 'in',
'xtick.top': False,

'ytick.major.size': 6,
'ytick.minor.size': 4,
'ytick.major.width': 1.5,
'ytick.minor.width': 1.5,
'ytick.major.pad': 6,
'ytick.minor.pad': 6,
'ytick.labelsize': 'medium',
'ytick.direction': 'in',
'ytick.right': False,

# Legend
'legend.fancybox': True,
'legend.fontsize': 'large',
'legend.scatterpoints': 5,
'legend.loc': 'best',

# Figure
'figure.figsize': [8, 5.2],
'figure.titlesize': 'large',

# Images
'image.cmap': 'magma',
'image.origin': 'lower',

# Saving
'savefig.bbox': 'tight',
'savefig.format': 'png',
}
Loading
Loading