Math & Science ⇒ Case environment in theorem proofs
-
- Posts: 4
- Joined: Tue Jul 20, 2010 5:33 pm
Case environment in theorem proofs
Case 1. Text
Case 1.1. Text
Case 1.2. Text
Case 2.
But in the result I get the following:
Case 1.
Case 2.
Case 3.
How to make subcases?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Case environment in theorem proofs
-
- Posts: 4
- Joined: Tue Jul 20, 2010 5:33 pm
Re: Case environment in theorem proofs
...
\newtheorem{case}{Case}
\newtheorem{subcase}{Case}
\numberwithin{subcase}{case}
\begin{document}
...
\begin{case}
...
\begin{subcase}
...
\end{subcase}
...
\end{case}
...
With such code I'v got exactly what I wanted.
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Case environment in theorem proofs
Stefan