The following code:
Code: Select all
\documentclass[DIV=calc, headsepline, twocolumn]{scrartcl}
\usepackage{scrlayer-scrpage}
\usepackage{blindtext}
\KOMAoption{DIV}{last}
\begin{document}
\blinddocument
\end{document}
Package typearea Warning: page content and margins higher than paper. This may result in page footer out of paper. You should decrease DIV, decrease foot height, or include footer into type area.
The effect on the pdf is that the footer being eatten. The sufficient condition for generating such issue is:
DIV=calc and headsepline, and twocolumn
Disabling any of the option, the issue will vanish. With the options discribed above, the calculated DIV is 42, which is way too large. Changing it to 28 would render the document correctly without significantly changing characters per line. I am new to KOMA-Script, so not sure if specifying DIV with factor is expected here.
Any help would be much appreciated,
Haoze