Link to home
Start Free TrialLog in
Avatar of InteractiveMind
InteractiveMindFlag for United Kingdom of Great Britain and Northern Ireland

asked on

LaTeX, custom \newtheorem?

I wish to have something like this:

\vspace{5mm}\noindent{\bf Title of something}. {\it Content ...}\vspace{5mm}

But obviously that doesn't seem like a decent way to do it (especially as I'm likely to have hundreds of such statements). Is there a better way to do this?


I like the \newtheorem feature, but if I do something like this:

\newtheorem*{thm}{Theorem}
...
\begin{thm}[Title of something] Content ... \end{thm}

It will obviously shove 'Theorem' before everything else, and wrap the 'Title of something' in brackets, which is not what I want.


Thanks
ASKER CERTIFIED SOLUTION
Avatar of Maciej S
Maciej S
Flag of Poland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of InteractiveMind

ASKER

Wonderful. Thank you.