This is a test announcement rendered using Quarto ❤️
With Quarto, I can render math:
\[\tau > \pi\]
…and I can calculate results:
import mathmath.tau > math.pi
True
… and I can show maps and plots:
import cartopy.crs as ccrsimport matplotlib.pyplot as pltax = plt.axes(projection=ccrs.NorthPolarStereo(central_longitude=-45))ax.set_extent([-180, 180, 90, 40], crs=ccrs.PlateCarree())ax.stock_img()# TODO: Put some data on the mapplt.show()