GeneralAuthors name in table of contents

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
drsv
Posts: 1
Joined: Tue Dec 16, 2008 12:44 pm

Authors name in table of contents

Post by drsv »

Hi,

I am new to latex. I am editing a book that has many articles (chapters) by different authors. Hence I need the following but am unable to do -
1. To include the name of the author along with the title in table of contents
2. To be able to include author's name also at the beginning of each chapter.
3. To avoid numbering the chapter but to include it in the table of contents.

It will be great if someone can help in this regard.

Srinidhi

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Authors name in table of contents

Post by localghost »

The following code shows how you may achieve that. Adapt details to your demands.

Code: Select all

\documentclass[11pt,a4paper]{report}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage[english]{babel}
\usepackage{epigraph}
\usepackage{lmodern}
\usepackage{blindtext}

\parindent0em

\begin{document}
  \tableofcontents

  \chapter*{First}
    \addcontentsline{toc}{chapter}{First -- Author}
    \epigraphhead[48]{\large Author}
    \blindtext
\end{document}
Refer to the manual of the epigraph package to learn how to place the author name on the chapter title page.


Best regards and welcome to the board
Thorsten¹
Post Reply