Search found 5 matches

by xrismf
Fri Jul 29, 2011 6:43 pm
Forum: Kile
Topic: auto indent/format
Replies: 0
Views: 8322

auto indent/format

Hello,

is there a way in kile to automatically format the source code? Like when I press some keyboard shortcut it automatically indents everything according to Tools->Indentation->Normal for example.

Kind Regards
by xrismf
Wed Jul 20, 2011 6:57 pm
Forum: Page Layout
Topic: Alternating Page Numbers with Chapter and ToC
Replies: 2
Views: 3111

Alternating Page Numbers with Chapter and ToC

Code: Select all

\fancypagestyle{plain}{%
\fancyhf{} % clear all header and footer fields
\lfoot[\thepage]{}
\rfoot[]{\thepage}
\fancyhead[RE]{\textit{\nouppercase{\leftmark}}}
\fancyhead[LO]{\textit{\nouppercase{\rightmark}}}}
works fine. Thank you very much! :)
by xrismf
Wed Jul 20, 2011 5:57 pm
Forum: Page Layout
Topic: Alternating Page Numbers with Chapter and ToC
Replies: 2
Views: 3111

Alternating Page Numbers with Chapter and ToC

Hi,

I'm using


\documentclass[...,twoside]{...}
...
\fancyhf{}
\lfoot[\thepage]{}
\rfoot[]{\thepage}


to get alternating page numbers. However, whenever there is a \chapter page or the \tableofcontents page, the layout is broken and the number is displayed bottom/central.

Could someone tell ...
by xrismf
Sat May 07, 2011 2:12 pm
Forum: Page Layout
Topic: section heading appears on every page
Replies: 3
Views: 2426

Re: section heading appears on every page

Well, got to put this on every page with a heading - but it works. So thank you very much :-)
by xrismf
Fri May 06, 2011 5:49 pm
Forum: Page Layout
Topic: section heading appears on every page
Replies: 3
Views: 2426

section heading appears on every page

Hello alltogether,

I have tried this example to get some nicer formatted headings for my document. Unfortunately now the header of the actual section is printed on top of every page, but I only want the header to appear at the actual beginning of the section. The relevant code is:


\documentclass ...