Skip to content

Commit

Permalink
fix fontsize in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ytdHuang committed Oct 2, 2024
1 parent c377908 commit 52459ef
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions docs/src/users_guide/steadystate.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,11 @@ sol_me = mesolve(H, ψ0, tlist, c_op_list, e_ops=e_ops, progress_bar=false)
exp_me = real(sol_me.expect[1, :])
# plot the results
fig = Figure(size = (500, 350), fontsize = 15)
fig = Figure(size = (500, 350))
ax = Axis(fig[1, 1],
title = L"Decay of Fock state $|10\rangle$ in a thermal environment with $\langle n\rangle=2$",
xlabel = "Time",
ylabel = "Number of excitations",
titlesize = 24,
xlabelsize = 20,
ylabelsize = 20
ylabel = "Number of excitations",
)
lines!(ax, tlist, exp_mc, label = "Monte-Carlo", linewidth = 2, color = :blue)
lines!(ax, tlist, exp_me, label = "Master Equation", linewidth = 2, color = :orange, linestyle = :dash)
Expand Down

0 comments on commit 52459ef

Please sign in to comment.