Search found 10 matches

by chrisr34000
Wed Jan 04, 2012 8:44 pm
Forum: General
Topic: amsthm: \qedhere does not appear
Replies: 1
Views: 7206

amsthm: \qedhere does not appear

I have the following code:

\documentclass[a4paper, twoside, ngerman, openright, 12pt]{report}
\usepackage{amsmath, amsthm, amsfonts, amssymb, amssymb, dlfltxbcodetips}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{float}
\usepackage{enumerate}
\usepackage{array}
\usepackage ...
by chrisr34000
Wed Sep 21, 2011 6:20 pm
Forum: Text Formatting
Topic: Numbering in the footer even if numbering in footer disabled
Replies: 2
Views: 1618

Numbering in the footer even if numbering in footer disabled

Hi!

I get a page number in the footer, every time a chapter starts, even if I have the following command in my preamble:

Code: Select all

\fancyfoot[C]{}
Should I include all the code of my document?

Regards,
Chris
by chrisr34000
Wed Sep 21, 2011 12:11 pm
Forum: Text Formatting
Topic: No Dot after Theorem Title
Replies: 4
Views: 12213

Re: No Dot after Theorem Title

Awesome, thanks! :mrgreen:
by chrisr34000
Thu Aug 25, 2011 6:29 pm
Forum: Text Formatting
Topic: No Dot after Theorem Title
Replies: 4
Views: 12213

No Dot after Theorem Title

Hi!

Sure:

\documentclass[a4paper, german, openright, 12pt]{report}
\usepackage{amsmath, amsthm, amsfonts, amssymb, amssymb, dlfltxbcodetips}
\usepackage{lmodern}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{float}
\usepackage[ngerman]{babel}
\usepackage{enumerate ...
by chrisr34000
Tue Aug 23, 2011 11:47 pm
Forum: Text Formatting
Topic: fancyhdr | Make Header as wide as the Text
Replies: 2
Views: 4933

fancyhdr | Make Header as wide as the Text

Hello!

I have the following header:

\usepackage{fancyhdr}
\fancyhf{}
\fancyhead[L]{\bfseries \nouppercase \leftmark}
\fancyhead[R]{\bfseries \thepage}
\setlength{\headheight}{16pt}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0.5pt}
\fancyheadoffset{\marginparwidth - 1.05cm}

and my page ...
by chrisr34000
Tue Aug 23, 2011 11:44 pm
Forum: Text Formatting
Topic: No Dot after Theorem Title
Replies: 4
Views: 12213

No Dot after Theorem Title

Hi!

I want to generate notes, without dots at the end.
My code was:

\theoremstyle{remark}
\newtheorem*{bem}{Bemerkung:}

and the output is:

Bemerkung:.

I want to get rid of the period at the and tried:

\theoremstyle{remark}
\theoremstyle{dotless}
\newtheorem*{bem}{Bemerkung:}

to no avail ...
by chrisr34000
Tue Aug 23, 2011 2:19 am
Forum: Text Formatting
Topic: Equation Numbering
Replies: 3
Views: 2266

Equation Numbering

Excellent, that worked! Thanks again!

Is it possible to use the

Code: Select all

align*
command with some command where I can specify which line to be numbered? A

Code: Select all

numberthis
command? It would be easier than using a the

Code: Select all

nonumber
command over and over again...
by chrisr34000
Tue Aug 23, 2011 2:09 am
Forum: Text Formatting
Topic: Equation Alignment at equal Signs
Replies: 2
Views: 3143

Re: Equation Alignment at equal Signs

Worked great, thanks!
by chrisr34000
Mon Aug 15, 2011 9:59 pm
Forum: Text Formatting
Topic: Equation Numbering
Replies: 3
Views: 2266

Equation Numbering

Hello!

I'm having the following code:

$&=& P(u+\displaystyle \sum_{k=1}^{n}(cY_{k}-X_{k})<0$ für ein $n \geq 1)$

}
$&=& P(\displaystyle \sum_{k=1}^{n}(X_{k}-cY_{k})>u$ für ein $n\geq 1)$
}

$&=& P(\displaystyle \sup_{n\geq 1}\sum_{k=1}^{n}(X_{k}-cY_{k})>u)$ && \text{ (1.1)}

&\Leftrightarrow ...
by chrisr34000
Mon Aug 15, 2011 9:52 pm
Forum: Text Formatting
Topic: Equation Alignment at equal Signs
Replies: 2
Views: 3143

Equation Alignment at equal Signs

Hi!

I want to align equations by equal signs.

I'm having this code for instance

Code: Select all

\begin{align*}

$\psi(u,\ 1)\ =\ P(R_{1}>u)$


$=\ P(Z_{1}>u)$


$=\ P(e^{\nu Z_{1}}>e^{\nu u})$
\end{align*}
This produces:
current.png
current.png (3.31 KiB) Viewed 3125 times
I want the end result to be:
wanted.png
wanted.png (3.63 KiB) Viewed 3125 times
How can I achieve this?