정의, 정리 등 사이에 수직 공간을 추가하려고 합니다. 예를 들어 다음과 같이 설정하는 경우:
\begin{definition}
blah blah blah
\end{definition}
%%%should be space here but there's not
\begin{theorem}
blah blah blah
\end{theorem}
나의 정의 이후와 나의 새로운 정리 이전에는 수직 공간이 거의 없습니다. 이 문제를 어떻게 해결합니까?
답변1
정리와 정의를 올바르게 정의하셨나요? 다음 코드를 사용하면 줄 사이에 공백이 있습니다.
\documentclass{article}
\usepackage{amsmath}
\newtheorem{theorem}{Theory of Blahblah}
\newtheorem{definition}{Definition of Blah}
\begin{document}
\begin{definition}
blah blah blah
\end{definition}
%%%should be space here but there's not
\begin{theorem}
blah blah blah
\end{theorem}
\end{document}
공간이 충분하지 않은 경우 줄 사이의 수직 공간을 '무차별 대입'할 수 있는 여러 가지 방법이 있습니다. 텍스트의 줄 사이에 \smallskip을 추가하는 것이 원하는 것일 수 있습니다.
모든 정리 또는 정의 후에 지속적으로 더 많은 공간이 필요한 경우 환경을 재정의해 볼 수 있습니다. 그러나 이번에는 생략하겠습니다. amsmath와 같은 엄격한 환경에서 장난을 치는 것은 일부 청중을 불쾌하게 할 수 있습니다.