General ⇒ Chapter authorship subtitles
Chapter authorship subtitles
What's the best way to add authorship subtitles to each chapter/section title?
Thanks in advance.
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Chapter authorship subtitles
a solution with memoir is described here: Author(s) per chapter - short story collection.
Further there's this earlier question on latex-community.org with several suggestions: An author and a title on chapter page.
Stefan
Chapter authorship subtitles
That looks great, but I'd rather not change the book class. Amongst other things because of the layout of the title and index pages.Stefan_K wrote:a solution with memoir is described here: Author(s) per chapter - short story collection.
Doesn't look so good – the code I copied verbatim makes the chapter typeface look very different from the rest.Stefan_K wrote:Further there's this earlier question on latex-community.org with several suggestions: An author and a title on chapter page.
I suppose it can be tweaked so chapter titles look the same as they do by default, but unfortunately I don't know how.
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Chapter authorship subtitles
instead of just bumping up without additional information it would be better to add some information at this occasion. A minimal working example would be great. It allows people to see what you are doing, which classes, packages and options you are using. Otherwise it's a quite theoretical question, answers might be similar then, if coming at all.
Stefan
Chapter authorship subtitles
Code: Select all
\documentclass{memoir}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\title{Some title}
\author{The Does}
\begin{document}
\maketitle
\tableofcontents
\chapter{Some chapter}
\chapterprecis{John Doe}
\lipsum
\chapter{Another chapter}
\chapterprecis{Jane Doe}
\lipsum
\end{document}
Code: Select all
\documentclass{book}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\title{Some title}
\author{The Does}
\begin{document}
\maketitle
\tableofcontents
\chapter{Some chapter}
\lipsum
\chapter{Another chapter}
\lipsum
\end{document}
There is also this possibility:
Code: Select all
\documentclass{book}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\usepackage{titlesec}
\titleformat{\chapter}{\normalfont\Large\scshape}{\thechapter}{1em}{}
\title{Some title}
\author{The Does}
\begin{document}
\maketitle
\tableofcontents
\chapter*{Some chapter \\ \normalfont\normalsize\textit{--- John Doe ---}}
\addcontentsline{toc}{chapter}{\normalfont\scshape{Some chapter} \\ \normalfont\textit{John Doe}}
\lipsum
\chapter*{Another chapter \\ \normalfont\normalsize\textit{--- Jane Doe ---}}
\addcontentsline{toc}{chapter}{\normalfont\scshape{Another chapter} \\ \normalfont\textit{Jane Doe}}
\lipsum
\end{document}
Re: Chapter authorship subtitles
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Chapter authorship subtitles
Stefan
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Chapter authorship subtitles
Stefan