Skip to content

Commit

Permalink
WIP title block in Julia
Browse files Browse the repository at this point in the history
  • Loading branch information
asinghvi17 committed Sep 23, 2024
1 parent 964ae5a commit dee5d32
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions cover/cover.jl
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,33 @@ sm.diffuse[] = oldspec




#=
## Title
The title is created in the same way as the Julia logo is.
We take the font "Tamil MN Bold" at 48 pt, and
plot it in data space in an axis. Then, we can
compress the axis by setting its aspect ratio,
thus compressing the text as well!
=#

title_ax = Axis(
fig[0, 1];
backgroundcolor = :transparent,
)
hidedecorations!(title_ax)
# hidespines!(title_ax)

title_text = text!(
title_ax,
"Geocomputation\nwith",
fontsize=48, font=joinpath(@__DIR__, "TamilMNBold.ttf"),
align=(:left, :center),
space=:data,
)

tightlimits!(title_ax)
axis.aspect[] = 48/40

0 comments on commit dee5d32

Please sign in to comment.