In "22.1.1" what are the "22" and "1"? The chapter and section? That's what I'll assume.
Anyway, I can think of many different ways of accomplishing this. If I were going to stick with ntheorem commands, wouldn't using the margin style along with positive indentation (and empty label) be the same more or less as a hanging paragraph:
Code: Select all
\documentclass[10pt,letter]{report}
\usepackage{amsmath}
\usepackage{ntheorem}
\usepackage{lipsum}% for auto-generating paragraphs
\theoremstyle{margin}
\theoremindent3em
\theoremseparator{\negthickspace\negthinspace}
\theorembodyfont{}
\newtheorem{subproblem}{}[section]
\begin{document}
\chapter{This chapter}
\section{This section}
\lipsum[1]% paragraph above for comparison
\begin{subproblem}
Find the domain of the function (and we're making this long so we can see what happens with the next line)
\[
f(x)=\frac{2}{x-2}
\]
State your answer in interval notation.
\end{subproblem}
\lipsum[3]% paragraph below for comparison
\end{document}
However, it isn't clear to me that you really ought to be doing this at all with a theorem environment, as opposed to something like an enumerate-like environment (tweaked with
enumitem, etc.) or similar. I can think of some other ways to accomplish it too, using, e.g., a custom defined environment with the
hanging package, or just a mbox and a parbox.
I guess my actual strategy would vary on details. E.g., how far does it hang? Does it depend on the width of the label? Or is it a constant amount for every instance? Do subsequent lines of text always line up with where the first one started after the label? Is the label right aligned or left aligned, and is its start flush with the usual start of text, etc.?
Sorry but I'm ethically bound not to help you with making it use the comic sans font. That's just wrong.