\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:
\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 tabular
uma l
coluna alinhada ao eft (e não \tabcolsep
à esquerda como resultado de @{}
). \smash
aplicá-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}}}