Skip to content

Commit

Permalink
Debug docs ci
Browse files Browse the repository at this point in the history
  • Loading branch information
charleskawczynski committed Apr 29, 2024
1 parent 51bfd83 commit 9d7df70
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/src/plotting_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -323,10 +323,13 @@ function verify_convergence(
plots = (plots..., footnote_plot)

n_plots = length(plots)
@show n_plots
@show typeof(n_plots)
layout = Plots.grid(n_plots, 1; heights = [repeat([1 / (n_plots - 1)], n_plots - 1)..., 0])
plot = Plots.plot(
plots...;
plot_title = "Analysis of $title for \"$test_name\"",
layout = Plots.grid(n_plots, 1; heights = [repeat([1 / (n_plots - 1)], n_plots - 1)..., 0]),
layout = layout,
fontfamily = "Computer Modern",
)

Expand Down

0 comments on commit 9d7df70

Please sign in to comment.