tableofcontents

Multiple tables of contents in LaTeX

I would like to make a LaTeX document with two tables of contents, like: Contents overview 1 - Introduction 2 - Solution Detailed contents 1 - Introduction 1.1 - The problem 1.2 - Why? 2 - Solution 2.1 - Phase A 2.2 - Phase B I tried with \setcounter{tocdepth}{1} \tableofcontents...

Crystal: TOC add dots

I try to add dots between the page title and the page number in Crystal Reports for a table of content. I found http://www.tek-tips.com/viewthread.cfm?qid=1545153&page=1 in the web, but I wonder if there's a more simple and direct way to get the same result. I'm using CR shipping with VS 2008. ...

Latex: Citations in section headings put into table of contents first

I have some citations for sections of my document that I have put in the section heading: \section{The title \cite{abc}, \cite{def}} Text I am also using the table of contents function, but Latex must look at the citations in the headings (for the table of contents) first and assign them the first citation rankings, regardless of their...

Is it possible to create a table of contents with page numbers for an RDLC report?

I have a fairly large report I'm trying to create as an RDLC in Visual Studio 2008. There are several sections that I plan to create as subreports and then compile them all into a master RDLC. However, one of my client's requirements is that it have a table of contents with page numbers indicating where to find the various sections of th...

Add table of contents to RTF document

I am trying to generate a RTF document by hand and eventually will do it programtically. I plan to improve pyRTF so that it can generate "Table of contents", which I think it can't. I am not able to use RTF controls words (\tc, \tcf and \tcl.) to generate a TOC. http://msdn.microsoft.com/en-us/library/aa140283(office.10).aspx gives det...

How do I generate a table of contents for HTML text in Python?

Assume that I have some HTML code, like this (generated from Markdown or Textile or something): <h1>A header</h1> <p>Foo</p> <h2>Another header</h2> <p>More content</p> <h2>Different header</h2> <h1>Another toplevel header <!-- and so on --> How could I generate a table of contents for it using Python? ...

Modifying LaTeX Table of Contents to add a period after chapter/table/figure number

I need to add a period after the chapter/table/figure number in each line in Table of Contents/LoT/LoF. ie, right now it shows: TABLES 1 first 2 second but I need it to show: TABLES 1. first 2. second I know this can be done with the tocloft package, however, that package is conflicting with the latex style I'm using, with t...

Using table-of-contents in code?

Do you use table-of-contents for listing all the functions (and maybe variables) of a class in the beginning of big source code file? I know that alternative to that kind of listing would be to split up big files into smaller classes/files, so that their class declaration would be self-explanatory enough.. but some complex tasks require ...

Table of contents: leading dots

What is a nice way to do leading dots in a table of contents with CSS? Example: Link.............Chapter 1 Link.............Chapter 2 Link.............Chapter 3 ...

Generate a table of contents from HTML with Python

I'm trying to generate a table of contents from a block of HTML (not a complete file - just content) based on its <h2> and <h3> tags. My plan so far was to: Extract a list of headers using beautifulsoup Use a regex on the content to place anchor links before/inside the header tags (so the user can click on the table of contents) -- Th...

Enclosing multiple LaTeX documents

I am not sure if this question is suitable for superuser instead, but I'll ask anyway. Currently I'm writing on my documentation for my final project. I must append several other LaTeX documents as enclosure. They must be mentioned in the first Table of Contents as alphabetical appendix. I tried the package subfiles, but the subsequent ...

Filler dots for Table of Contents in Reporting Services

Does anyone have a slick way of adding filler dots to a table of contents page in RS? This would not be a problem were it using proportional fonts. e.g. Monkey.........5 House..........1 Tree...........11 Underpants.....2 Obviously the example above sucks as the font is proportional ...

determine which page an object is on in Reporting Services

I need to do this for a 'Table of Contents' (sub)report. Methinks it is not possible. Any ideas? e.g. Table 1 starts on page 2 Table 2 starts on page 7 Is there, perhaps, a way of tapping into the Document Map? ...

hide an entry from Toc in latex.

I would like to know how I can hide a section from the table of contents but without loosing the section number in the body of the document. For example, in this tex file I loose the number for hide, and all the sequences are damaged: \documentclass{article} \begin{document} \tableofcontents \section{uno} \section{dos} \section*{hide} ...

Bitbucket Wiki TableOfContents

Hello guys, I started with bitbucket and tried to use the wiki for my documentation. Therefore, i created a folder "documentation" unter the folder "wiki" (same level as home.wiki) and added some .wiki files. Now i'm trying to display all these contents of Documentation/ as table of contents. Therefore, i added the line: <<toc Docume...

Latex: tableof contents only for a section

Hello, As it is a looong appendix, I would like to add a "tableofSECTION" on the first page of the section. However, tableofcontents always lists everything and the level is - as far as I can see - only defined as a "to" variable, but not "from". What I would like to see: SECTION TITLE x.1 subsection 122 x.2 subsection 144 etc. ...

How to remove entry "Listings" from table of content (toc)

How can I use \lstlistoflistings to create a list of listings, but not have this list as an entry in the table of content? Normally, a star helps to hide things like that and I use memoir as document class which supports and helps hiding lists like \tableofcontents*, \listoffigures*, \listoftables*, ... But adding the star like that: \l...

Adding a Table Of Content to a Jasper Report?

How do I go about adding a Table Of Contents to a Jasper Report? ...

Alphabetical ToC counter

How do I change the counter in ToC to letters (A, B, C)? To illustrate: from 1. Section 2. Section 3. Section to A. Section B. Section C. Section Thanks ...

Remove specific subsection from TOC in LaTeX

Appendix A Section 1 A.1 Subsection 1 A.2 Subsection 2 B Section 2 Is there a way to get rid of Subsection n, but still have the subsection numbered in the document (i.e. not using \subsection*)? I thought about limiting the TOC depth, but that does not seem to be possible for just the Appendix? ...