I am not sure whether this is the right place to ask, but as far as I understand, this is actually a page layout issue. Let me explain you what I need. I am actually writing a thesis and I figured out that the article class suits me well, but my university has some specific requirements on how the ToC should look like. I need to
- Add dots after part numbers
- Add "Chapter" before the section numbers
- The sections should be numbered with \Roman numerals.
- I need to fill the sections line with dots just like for the subsections
- The subsections should be all numbered with \arabic numerals and they should not include the word "Chapter"
- The other formatting should remain as it is
I figured out that it should be doable with the titletoc package, but I have read through the manual and didn't understand a word of it. I managed to apply those changes to the text itself via the titlesec package, but this one is really over my head.Preface (section*) ............................ 1
Chapter I. Blah-blah-blah (section) ....... 2
1.1. Foo ........................................... 3
1.2. Bar ........................................... 4
Chapter II. Blah-blah-blah (section) ...... 5
Conclusion ...................................... 1
So please please help me

Please find my preamble below:
Code: Select all
% $Id: diploma.tex 23 2009-05-24 23:11:50Z zyv $% The extsizes classes and class options provide support for sizes eight, nine,% ten, eleven, twelve, fourteen, seventeen and twenty points.% http://www.ctan.org/tex-archive/macros/latex/contrib/extsizes/\documentclass[a4paper,14pt]{extarticle}% PDF search & cut'n'paste\usepackage{cmap}% Better sans-serif fonts\usepackage{pscyr}\renewcommand{\rmdefault}{cmr}\renewcommand{\sfdefault}{ftx}\renewcommand{\ttdefault}{cmtt}% Cyrillic support\usepackage{mathtext}\usepackage[T2A]{fontenc}\DeclareSymbolFont{T2Aletters}{T2A}{cmr}{m}{it}\usepackage[utf8]{inputenc}\usepackage[russian]{babel}% AMS font faces\usepackage{amsmath, amsfonts, amssymb}% Detect whether PDFLaTeX is in use\usepackage{ifpdf}% Graphics\ifpdf\usepackage[pdftex]{graphicx}\else\usepackage{graphicx}\fi\graphicspath{{images/}}% Indent the first paragraph as well\usepackage{indentfirst}