Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • 2
    The default font size of article is 10pt. The default font size of scrartcl is 11pt. If you use \documentclass[10pt]{scrartcl} you get the same result as with \documentclass{article} (as wanted). And if you use \documentclass[11pt]{article} you get the same result as with \documentclass{scrartcl} (as not wanted). So this does not depend on using a KOMA-Script class or not, but on the font sizes. Commented Mar 13, 2024 at 8:44
  • Ah I see, font size was the one aspect I did not consider checking. Setting \documentclass[11pt]{article} indeed produces the same weird appearance. \usepackage{amsmath} fixes that, but \usepackage{lmodern} then destroys that fix again. So I guess it is a side effect of lmodern. Commented Mar 13, 2024 at 9:06