Search found 6 matches

by the_julle
Thu Jun 09, 2011 2:03 pm
Forum: Text Formatting
Topic: Roman chapter numbering in the beginning of a report
Replies: 1
Views: 1383

Roman chapter numbering in the beginning of a report

This is how it's done :D

Code: Select all

\renewcommand{\thechapter}{\Roman{chapter}}
\include{tex/preface}

\renewcommand{\thechapter}{\arabic{chapter}} 
\setcounter{chapter}{0} 
\include{tex/chap}
\include{tex/nextchap}

\appendix
\include{tex/appendix}
by the_julle
Thu Jun 09, 2011 1:50 pm
Forum: Text Formatting
Topic: Roman chapter numbering in the beginning of a report
Replies: 1
Views: 1383

Roman chapter numbering in the beginning of a report

Hi all.

I'm writing in the report-environment. I want a table of content like this:

I Preface.......1
II Acronym.......2
1 Some chapter..3
2 Some other....4
A Appendix one..5
B Appendix two..6

Right now, I have managed to create this TOC:

1 Some chapter..3
2 Some other....4
A Appendix one..5 ...
by the_julle
Mon May 16, 2011 3:57 pm
Forum: Math & Science
Topic: Arrow down in \lim ?
Replies: 2
Views: 13345

Re: Arrow down in \lim ?

What?! I'm sure i tried that!

But it works! Thanks for the quick reply!!
by the_julle
Mon May 16, 2011 3:42 pm
Forum: Math & Science
Topic: Arrow down in \lim ?
Replies: 2
Views: 13345

Arrow down in \lim ?

Hi all.

I'm trying to write an equation with a limit, however i do not want it to be the normal way:

\begin{align}\label{eq:limit}
\lim_{\gamma \to 0} \dfrac{1}{\gamma}
\end{align}

I do NOT want the normal arrow "->", instead i want an arrow that points downward. How is that possible?

Alex.
by the_julle
Thu Apr 28, 2011 3:07 pm
Forum: General
Topic: Report: Appendix and bibliography in TOC
Replies: 1
Views: 1728

Re: Report: Appendix and bibliography in TOC

Doh... i had a "End Document" at the end of one of my appendices... After i removed that, everything is now working !!
by the_julle
Thu Apr 28, 2011 1:54 pm
Forum: General
Topic: Report: Appendix and bibliography in TOC
Replies: 1
Views: 1728

Report: Appendix and bibliography in TOC

Hi all.

I'm writing a report, but have some difficulties with the table of contents. I know this topic have been discussed before, but I can't seem to get it to work...

\documentclass[fleqn,10pt,a4paper]{report}
...
\usepackage{appendix}
...

\begin{document}
\simplechapter

\include{tex ...