diff --git a/posts/permutations/2/graph_data/base.py b/posts/permutations/2/graph_data/base.py index d08e1d1..9a4a3af 100644 --- a/posts/permutations/2/graph_data/base.py +++ b/posts/permutations/2/graph_data/base.py @@ -12,12 +12,12 @@ def display_integral_root( + ("\\pm" if root != 0 else "") + str(root) + ")^{" + + str(multiplicity) # pad multiplicity + (("\\phantom{" + ("0" * (pad_to - len(str(multiplicity))) + "}")) if pad_to is not None and len(str(multiplicity)) < pad_to else "" ) - + str(multiplicity) + "}" )