-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from musoke/jcap-jhep
- Add themes for JHEP and JCAP. - MP now supports both Per-publisher themes and Per-journal themes.
- Loading branch information
Showing
6 changed files
with
45 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
""" | ||
theme_jcap(; kwargs...) | ||
Generate Makie theme for producing figures for JCAP (Journal of Cosmology and Astroparticle Physics). | ||
The usage is the same as [`theme_acs`](@ref) except figure `width=6.08948`. | ||
The value of `width` is obtained from `\\uselengthunit{in}\\printlength{\\linewidth}` and corresponds to 440pt. | ||
JCAP is single column, so `theme_jcap_1col` and `theme_jcap_2col` are not defined. | ||
See also [`theme_acs`](@ref), [`theme_aps`](@ref), [`theme_jhep`](@ref), [`theme_rsc`](@ref), and [`theme_web`](@ref). | ||
""" | ||
theme_jcap(; kwargs...) = theme_acs(; width=6.08948, kwargs...) | ||
|
||
""" | ||
theme_jhep(; kwargs...) | ||
Generate Makie theme for producing figures for JHEP (Journal of High Energy Physics). | ||
The usage is the same as [`theme_acs`](@ref) except figure `width=5.95393`. | ||
The value of `width` is obtained from `\\uselengthunit{in}\\printlength{\\linewidth}`. | ||
JHEP is single column, so `theme_jhep_1col` and `theme_jhep_2col` are not defined. | ||
See also [`theme_acs`](@ref), [`theme_aps`](@ref), [`theme_jcap`](@ref), [`theme_rsc`](@ref), and [`theme_web`](@ref). | ||
""" | ||
theme_jhep(; kwargs...) = theme_acs(; width=5.95393, kwargs...) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
include("acs.jl") | ||
include("web.jl") | ||
include("aps.jl") | ||
include("rsc.jl") | ||
include("rsc.jl") | ||
include("web.jl") | ||
|
||
include("journals.jl") |