Tagged Questions
1
vote
1answer
83 views
table numbers are wrong for double column table
My:
\begin{table*}[t]
\begin{minipage}{\textwidth}
\begin{tabular}
\end{tabular}
\CaptionType{table}
\caption{...}
\label{tab:res2}
\end{minipage}
\\
...
7
votes
1answer
682 views
Reset section numbering between unnumbered chapters
The document I'm writing using report class has 2 unnumbered chapters. The sections of the 2nd chapter are numbered following the numbering of the sections of the 1st chapter, like this:
MY FIRST ...
2
votes
0answers
68 views
How to get non-numbered sections to show in ToC [duplicate]
Possible Duplicate:
Centering \section* and adding them to the ToC
Adding unnumbered sections to TOC
I'm writing a book and I want the sections within the main text to carry no ...
5
votes
3answers
507 views
How to reset footnote numbering at \chapter* and at frontmatter chapters?
A comment to my answer to Biblatex and citation reset between chapters made me realize that, contrary to normal chapters in the book and report class, \chapter* (the starred version) does not reset ...
6
votes
2answers
627 views
How do I reference an appendix when it is defined with \chapter*?
I have a problem with the reference of an annex. In the main .tex file I put
%... couple of lines before this
\include{ThesisChapter4} %
\include{ThesisAppendixA} % Appendix A
and in Appendix A I ...
12
votes
2answers
4k views
Creating unnumbered chapters/sections (plus adding them to the ToC and/or header)
I'm using the report document class for a thesis, and I need to add things like "Acknowledgements" and an "Introduction". I noticed that there is an \abstract command which would have been wonderful ...
2
votes
1answer
261 views
Behavior of starred section in beamer
In a LaTeX article, \section* behaves like this:
\documentclass[12pt]{article} \begin{document}
\section*{Not numbered} \thesection % --> 0
\section{Numbered} \thesection % --> 1
\end{document}
...
4
votes
3answers
659 views
Having the starred version of a theorem environment unnumbered - with ntheorem
I'm trying to switch from amsthm to ntheorem. (This is due to the incompatibility of amsthm with babel+Hebrew, see here and here; seems not to have been resolved.)
I would like to have both a starred ...
4
votes
1answer
2k views
Acknowledgement page + report
I'm writing a report and I want to place the Acknowledgement page without \section because it will number it 0.1
I tried to place it in another TeX document and use \input in the main document, but ...