import matplotlib.pyplot as plt
from tueplots import markers
style = markers.with_edge()
plt.rcParams.update(style)
fig, ax = plt.subplots()
ax.plot([0, 1, 2], [2, 1, 3], "o-")
ax.set_xlabel("$x$ label")
ax.set_ylabel("$y$ label")
plt.show()
