\item의 텍스트 나누기

\item의 텍스트 나누기
\documentclass{report}
\usepackage{enumitem}
\begin{document}

\begin{description}[style=unboxed,leftmargin=4.75cm,labelwidth=!,labelsep=0cm,align=left]
    \item[C]High-level programming language.
\item[Monovalent heat pump system]The entire demand for space heating, ventilation heating and heating of DHW is covered by the heat pump.
\end{description}
\end{document}

"1가 히트펌프 시스템"을 어떻게 두 줄로 나눌 수 있나요? stackexchange의 다른 팁에서 "style=unboxed"를 사용해 보았지만 아무 것도 바뀌지 않았습니다.

"1가 히트
펌프 시스템"

답변1

\documentclass{report}
\usepackage{enumitem}
\begin{document}

\begin{description}[style=multiline,leftmargin=4.75cm,labelsep=0cm]
    \item[C]High-level programming language.
\item[Monovalent heat pump system]The entire demand for space heating, ventilation heating and heating of DHW is covered by the heat pump.
\end{description}
\end{document}

답변2

다음을 허용하는 구조 내에 수동 중단을 삽입합니다.

여기에 이미지 설명을 입력하세요

\documentclass{article}
\usepackage{enumitem}
\begin{document}

\begin{description}[leftmargin=10em,labelwidth=!,labelsep=0pt,align=left]
  \item[C]High-level programming language.

  \item[\smash{\begin{tabular}[t]{@{}l}Monovalent heat \\ pump system\end{tabular}}]
    The entire demand for space heating, ventilation heating and heating of 
    DHW is covered by the heat pump.
\end{description}

\end{document}

위에서는 eft 정렬 열을 사용했습니다( tabular결과 로 왼쪽에는 없음 ). 이렇게 하면 수직 높이/깊이 구성 요소가 제거되어 오른쪽의 선 높이 문제가 발생하게 됩니다.l\tabcolsep@{}\smash

이것이 설정에서 반복되는 주제인 경우 매크로를 고려할 수 있습니다.

\newcommand{\stackitemdesc}[1]{\smash{%
  \begin{tabular}[t]{@{}l} #1 \end{tabular}}}

관련 정보