Sadeq wrote:This forum used to be much more active!
I was expecting a workaround within several hours, but it's been several days and no response. [...]
With regard to your join date I think that you are not really qualified to gage that. Take into account that recently there has been Christmas and turn of the year so that many board members may be absent for holidays.
Concerning your problem you should use packages like
amsthm to balance this weakness of vanilla LaTeX and get the desired result.
Code: Select all
\documentclass[11pt,a4paper,twocolumn,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{blindtext}
\theoremstyle{definition}
\newtheorem{definition}{Definition}
\begin{document}
\blindtext
\begin{definition}[A very long caption for the definition goes here]
\blindtext
\end{definition}
\end{document}
You can also try the
ntheorem package to format such constructions.
Best regards
Thorsten