
준비 중입니다를 twocolumn
사용하는 문서 의 경우 단락 구분을 더 크게 하기 위해 수정하고memoir
\parskip
\section
결국 (a) 고르지 않고 잘못 정렬된 열이 생성됩니다.왼쪽 열의 텍스트 줄은 오른쪽 열의 텍스트 줄과 같은 높이에 있지 않습니다.; 그리고 (b)텍스트 상자, 전체 페이지를 차지할 때,아래쪽이 들쭉날쭉한 경우가 많습니다직선과 반대입니다(첨부된 이미지와 아래 MWE 참조).
특별한 경우는 제쳐두고, 텍스트가 다음 페이지에 계속될 때 상자가 완벽하게 직사각형이었다면 더 좋았을 것입니다. 그리고 한 열의 선이 다른 열의 선과 동등하다는 사실이 제가 보기에는 바닥의 들쭉날쭉한 부분 뒤에 있는 진정한 원인인 것 같습니다.이 문제를 해결하려면 어떻게 해야 합니까?
\documentclass[9pt, twocolumn]{memoir}
\usepackage{lipsum}
\setlength{\parskip}{2ex}%This and the used of \section misaligns the two columns. How to fix this?
\begin{document}
\section{Sample section}
\lipsum[0-2]
\section{Sample section}
\lipsum[0-1]
\section{Sample section}
\lipsum[0-5]
\end{document}
답변1
당신은 경고를 받습니다
Underfull \vbox (badness 10000) has occurred while \output is active
섹션이 없는 열에 불가능한 제약 조건을 지정했습니다. 유연한 접착제가 없으며 총 접착제와 선 높이가 그렇지 않습니다.\textheight
접착제를 유연하게 만들면 제약 조건을 달성할 수 있습니다. (비록 0이 아닌 두 가지 \parindent
를 모두 갖는 것은 다소 이례적이지만 \parskip
)
\documentclass[9pt, twocolumn]{memoir}
\usepackage{lipsum}
\setlength{\parskip}{2ex plus 1ex}%This and the used of \section misaligns the two columns. How to fix this?
\begin{document}
\section{Sample section}
\lipsum[0-2]
\section{Sample section}
\lipsum[0-1]
\section{Sample section}
\lipsum[0-5]
\end{document}