Search found 43 matches

by s.david
Sun Mar 21, 2010 12:42 am
Forum: Graphics, Figures & Tables
Topic: Tikz Package and Two Column Enviroment
Replies: 1
Views: 10141

Tikz Package and Two Column Enviroment

Hello,

I have the following piece of code, where it is intended to place the figure drawn using the tikz package in one of the two columns:

\documentclass[a4paper]{article}
\usepackage{caption}
\usepackage{graphicx}
\usepackage{multicol}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary ...
by s.david
Thu Dec 17, 2009 12:06 am
Forum: Text Formatting
Topic: Modifying the Table of Contents
Replies: 7
Views: 5194

Modifying the Table of Contents

at the moment I don't think there is any package that provides the Title and Page headers for the titles and page number 'columns'

I'm thinking about adding such a feature to memoir, but how do you add it after a page break in a long toc?

How long is the ToC? We might be able to hack something ...
by s.david
Wed Dec 16, 2009 7:50 pm
Forum: Text Formatting
Topic: Modifying the Table of Contents
Replies: 7
Views: 5194

Modifying the Table of Contents

Which document class are you using? Memoir, or something else?
Presumably you want spaces where the '.' symbols appear in your original
e-mail?
tocloft will not change the overall layout, as I understand it.

Yes, I am using the Memoir class. I really need this very soon. The '.' symbols are just ...
by s.david
Wed Dec 16, 2009 6:38 pm
Forum: Text Formatting
Topic: Modifying the Table of Contents
Replies: 7
Views: 5194

Modifying the Table of Contents

Have you tried using the tocloft package? The documentation is quite extensive to help you achieve what you want.

Regards,

sridhar

Thank you sridhar for replying.

Actually, I am not professional in Latex, and I don't know how to handle and create my own layout.

I just discussed my master ...
by s.david
Wed Dec 16, 2009 2:24 pm
Forum: Text Formatting
Topic: Modifying the Table of Contents
Replies: 7
Views: 5194

Modifying the Table of Contents

Hello,

How can I do something like this:

..................TABLE OF CONTENTS................

TITLE.....................................PAGE
CHAPTER ONE: ..............................23

Specifically, how can I center the title TABLE OF CONTENTS and add the TITLE address in the left and PAGE ...
by s.david
Tue Dec 15, 2009 12:28 am
Forum: Page Layout
Topic: Reset the Margins
Replies: 4
Views: 4091

Reset the Margins

I see no problem.
\documentclass[11pt,a4paper,english]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[bindingoffset=5mm,margin=2.5cm]{geometry}
\usepackage{blindtext}
\usepackage{lmodern}

\begin{document}
\blinddocument
\end{document}

Best regards ...
by s.david
Sun Dec 13, 2009 1:05 am
Forum: Page Layout
Topic: Reset the Margins
Replies: 4
Views: 4091

Reset the Margins

Hello,

It is supposed to submit my master thesis very soon, and there are some instructions about the thesis format including pages layout. Basically, I have used the geometry package, which is very helpful, but when I print a draft copy of my thesis the dimensions appear as the following:

1- left ...
by s.david
Fri Dec 11, 2009 11:45 pm
Forum: Text Formatting
Topic: Centering The Title of ToC
Replies: 5
Views: 11441

Centering The Title of ToC

Strange. On my system (TeXLive 2009), works fine. Here's your code with the additional line from my previous post to test:
\documentclass[a4paper,12pt,openany,oneside]{memoir}
\renewcommand{\printtoctitle}{\centering\Huge\bfseries}
\renewcommand{\contentsname}{TABLE OF CONTENTS}
\begin{document ...
by s.david
Fri Dec 11, 2009 2:24 pm
Forum: Text Formatting
Topic: Centering The Title of ToC
Replies: 5
Views: 11441

Centering The Title of ToC

You may try this:
\renewcommand{\printtoctitle}{\centering\Huge\bfseries}
Note that when redefining \printtoctitle you have to set other attributes too (in the example I set \Huge and \bfseries). For more infos take a look at Chapter 9. in memoir documentation.

Hello,

Thank you fo replying ...
by s.david
Fri Dec 11, 2009 12:50 pm
Forum: Text Formatting
Topic: Centering The Title of ToC
Replies: 5
Views: 11441

Centering The Title of ToC

Hello,

I have the following piece of code:

\documentclass[a4paper,12pt,openany,oneside]{memoir}
\renewcommand{\contentsname}{TABLE OF CONTENTS}
\begin{document}
\tableofcontents
\chapter{Test}
\end{document}

I want to center the title TABLE OF CONTENTS . How can I do that? I also want to center ...