Quebrar texto em \item

Quebrar texto em \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}

Como posso dividir o "Sistema de bomba de calor monovalente" em duas linhas? Tentei usar "style=unboxed" de outra dica no stackexchange, mas não mudou nada.

"Sistema de bomba de calor monovalente
"

Responder1

\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}

Responder2

Insira uma quebra manual dentro de uma estrutura que permita:

insira a descrição da imagem aqui

\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}

Acima usei tabularuma lcoluna alinhada ao eft (e não \tabcolsepà esquerda como resultado de @{}). \smashaplicá-lo remove qualquer componente vertical de altura/profundidade, o que teria resultado em problemas de altura de linha à direita.

Se este for um tema recorrente na sua configuração, considere uma macro:

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

informação relacionada