
LaTeX가 정리 전후에 남기는 수직 공간(cm 또는 pt 단위)이 무엇인지 찾기 위해 입력할 수 있는 코드가 있는지 알고 싶습니다.
나는 사용하고있다
\documentclass[12pt]{article}
그리고
\usepackage{amsfonts, amsthm, amsmath, amssymb}
답변1
반복되는 자료를 통한 터무니없는 예정리, 정의, 예의 기울임꼴이 아닌 텍스트
\documentclass{article}
\usepackage{mathtools,amsthm,kantlipsum}
\newtheoremstyle{crampedthm}% <name>
{\topsep}% <Space above>
{-3pt}% <Space below>
{\itshape}% <Body font>
{3cm}% <Indent amount>
{\bfseries\itshape}% <Theorem head font>
{:}% <Punctuation after theorem head>
{.5em}% <Space after theorem headi>
{}% <Theorem head spec (can be left empty, meaning `normal')>
\theoremstyle{crampedthm}
\newtheorem{cthm}{Tight Theorem}
\begin{document}
\kant[1]
\begin{cthm}
Roses are red $\iff$ sky is blue such that it is self-evident that this
theorem is true.
\end{cthm}
\kant[1-2]
\end{document}