Replies: 1 comment 2 replies
-
This may not be the cleanest way to achieve it, but adding this to header-includes works:
\renewcommand*\descriptionlabel[1]{%
\hspace\labelsep
\hbox to \dimexpr\hsize-\leftmargin-\itemindent-\labelsep{\normalfont\bfseries #1\hfill}%
}
It supposes that labels never span across lines (which is coherent with the concept of a description list in my opinion).
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to force a line break inside a definition list (Extension: definition_lists) after each term. Currently, the pdf (LaTeX) output starts the definition in the same line than the the term (which is not the case in html output).
I use this syntax for the definition list.
Any idea of the best way to do this?
Beta Was this translation helpful? Give feedback.
All reactions