Text Formatting ⇒ Omit page number in entries of ToC and restart theorem
Omit page number in entries of ToC and restart theorem
1) How do I omit page number and the dotted line for some entries in table of contents? E.g.
Acknowledgment
Quote
Chapter 1 ...............1
1.2..............8
2) I am using theorem package instead of amsthm. How can I restate a theorem together with its number in other chapter without auto numbering? Or how to manually numbered it? Eg. In Chapter 2, I wish to have
Theorem 2.1:
Theorem 2.2:
Theorem 1.3:
Theorem 2.3:
Theorem 2.4:
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
Re: Omit page number in entries of ToC and theorem
For ques. 1, I only want the first few entries to be unnumbered. How to we do that?
For ques. 2, I wrote \newtheorem{thm}{Theorem}
\newtheorem*{nothm}Theorem 1.3}
\begin{thm}
\end{thm}
\begin{nothm}
\end{nothm}
But it does not works. If I use amsthm package, how will the command be?
Another question is how to get the word Proof in bold \begin{proof} \end{proof} and how to get small caps and bold for the word Theorem \begin{thm} \end{thm}?
Regards