Search found 5 matches

by ubpgs
Tue Jul 21, 2009 2:52 pm
Forum: Page Layout
Topic: Remove first-line indent from first paragraph of every page
Replies: 3
Views: 3802

Remove first-line indent from first paragraph of every page

Through some investigation I've found that the first paragraph of a page seems to be typeset before the new page is started. Inserting the command \the\page within the paragraph will bring this issue to light, as the page number returned is still that of the previous page.

:?: Is there any command ...
by ubpgs
Mon Jul 20, 2009 3:13 pm
Forum: Page Layout
Topic: remove page headers of table of contents
Replies: 1
Views: 2677

remove page headers of table of contents

Add the following to your preamle and modify it to set the headings as you desire.

Code: Select all

\let\oldtableofcontents\tableofcontents
\renewcommand{\tableofcontents}{%
	\begingroup%
	%>Insert the command to format headings for the table of contents here.
	\oldtableofcontents%
	\clearpage%
	\endgroup%
}
by ubpgs
Mon Jul 20, 2009 2:54 pm
Forum: Page Layout
Topic: Change line in the contents
Replies: 2
Views: 1832

Change line in the contents

You can add the following to your preamble:

Code: Select all

\makeatletter
\let\oldl@chapter\l@chapter
\renewcommand*\l@chapter[2]{%
	\renewcommand*\numberline[1]{\chaptername~##1: }%
	\oldl@chapter{#1}{#2}%
}
\makeatother
by ubpgs
Wed Jul 15, 2009 10:55 am
Forum: Page Layout
Topic: Remove first-line indent from first paragraph of every page
Replies: 3
Views: 3802

Remove first-line indent from first paragraph of every page

As illustrated by the following example it seems that the commands used by the everypage package does not allow changes to the same conext as the page text. (I've also tried using the commands: \@begindiv \@outputpage \@texttop \@parboxrestore. \@texttop and \@parboxrestore will render textual ...
by ubpgs
Tue Jul 14, 2009 2:37 pm
Forum: Page Layout
Topic: Remove first-line indent from first paragraph of every page
Replies: 3
Views: 3802

Remove first-line indent from first paragraph of every page

I am currently working on a document that is designed to follow a set of layout guidelines but have found myself stuck when it comes to one of them.

All paragraphs should have a first-line indent of 13pt with the exception of …
… a new paragraph starting as the first text on a new page.
… a ...