How can I set a "global" subtitle when there are subplots? Here is my best solution, but I need to set a different font size for the subtitle:
import matplotlib.pyplot as plt
fig, axes = plt.subplots(2,2)
fig.suptitle('Global Title\nGlobal Subtitle.')
plt.tight_layout()