Text Formatting ⇒ Trouble with dissertation formatting in Turabian style
-
- Posts: 26
- Joined: Thu Apr 02, 2009 3:42 pm
Trouble with dissertation formatting in Turabian style
The two biggest issues are section chapter/header formatting and block quotes.
I tried to decipher titlesec, but I'm in over my head.
Chapter/Section headings:
* Chapter: Normal font size, bold, all caps
* Subheading: Normal font size, Italic
* Sub-subheading: Normal font size
* Each heading preceded by two blank lines (one doublespace, then a singlespace), and followed by a normal doublespace (one blank line), no widowed headings
* first paragraph after every heading, including chapter, must be indented .5"
Block quotes:
* first line not indented
There are several more issues as well, but this is a starter. Please help this humanities writer out. Thanks
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Trouble with dissertation formatting in Turabian style
If you're using report, look for lines like this:
Code: Select all
\newcommand\section{\@startsection {section}{1}{\z@}%
{-3.5ex \@plus -1ex \@minus -.2ex}%
{2.3ex \@plus.2ex}%
{\normalfont\Large\bfseries}}
\newcommand\subsection{\@startsection{subsection}{2}{\z@}%
{-3.25ex\@plus -1ex \@minus -.2ex}%
{1.5ex \@plus .2ex}%
{\normalfont\large\bfseries}}
\newcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
{-3.25ex\@plus -1ex \@minus -.2ex}%
{1.5ex \@plus .2ex}%
{\normalfont\normalsize\bfseries}}
Chapters will probably be trickier. In the standard report class, the \@makechapterhead command looks like
Code: Select all
\def\@makechapterhead#1{%
\vspace*{50\p@}%
{\parindent \z@ \raggedright \normalfont
\ifnum \c@secnumdepth >\m@ne
\huge\bfseries \@chapapp\space \thechapter
\par\nobreak
\vskip 20\p@
\fi
\interlinepenalty\@M
\Huge \bfseries #1\par\nobreak
\vskip 40\p@
}}
Code: Select all
\renewcommand{\@makechapterhead}[1]{ % Heading for \chapter command
\vspace*{30\p@} % Space at top of text page.
\begin{center}\large\bfseries
\ifnum \c@secnumdepth >\m@ne
\MakeUppercase\@chapapp\ \thechapter % 'CHAPTER' and number.
\par\nobreak
\fi
\addvspace{\topskip}
\MakeUppercase{#1}
\end{center}
\par\nobreak % TeX penalty to prevent page break.
\vskip 24\p@ % Space between title and text.
}
Re: Trouble with dissertation formatting in Turabian style
-
- Posts: 26
- Joined: Thu Apr 02, 2009 3:42 pm
Trouble with dissertation formatting in Turabian style
I've mananged chapter titles as follows:
Code: Select all
\makeatletter
\newcommand*{\spelled}[1]{%
\expandafter\@spelled\csname c@#1\endcsname
}
\newcommand*{\@spelled}[1]{%
\ifcase#1\or{ONE}\or{TWO}\or{THREE}\or{FOUR}\or{FIVE}\or{SIX}\or{SEVEN}\or{Eight}\or{Nine}\or{Ten}\else\@ctrerr\fi
}
\makeatother
% Setup for headings (titlesec)
\titleformat{\chapter}[display]
{\normalfont\normalsize\filcenter\scshape}
{\normalsize\MakeUppercase{\chaptertitlename~\spelled{chapter}}}
{1pc}
{\normalsize}
Code: Select all
% Setup for Section Headings (sectsty)
\sectionfont{\normalfont\itshape\normalsize
\subsectionfont{\normalfont\normalsize}}
-
- Posts: 26
- Joined: Thu Apr 02, 2009 3:42 pm
Re: Turabian style, indenting
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Trouble with dissertation formatting in Turabian style
For the headings issue just use the titlesec package and abandon sectsty. Read the package manual more careful. For a first approach see code below.alarswilson wrote:[...]
Chapter/Section headings:
* Chapter: Normal font size, bold, all caps
* Subheading: Normal font size, Italic
* Sub-subheading: Normal font size
* Each heading preceded by two blank lines (one doublespace, then a singlespace), and followed by a normal doublespace (one blank line), no widowed headings
* first paragraph after every heading, including chapter, must be indented .5"
Block quotes:
* first line not indented
[...]
Code: Select all
\documentclass[11pt,a4paper,twoside,english]{report}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\usepackage[doublespacing]{setspace}
\usepackage[indentfirst,raggedright]{titlesec}
\usepackage{lmodern}
\usepackage{blindtext}
\setlength{\parindent}{0.5in}
\makeatletter
\newcommand*{\spelled}[1]{%
\expandafter\@spelled\csname c@#1\endcsname
}
\newcommand*{\@spelled}[1]{%
\ifcase#1\or{One}\or{Two}\or{Three}\or{Four}\or{Five}\or{Six}\or{Seven}\or{Eight}\or{Nine}\or{Ten}\else\@ctrerr\fi
}
\g@addto@macro{\quote}{\upshape}
\g@addto@macro{\quotation}{\upshape}
\makeatother
% Setup for headings (titlesec)
\titleformat{\chapter}[display]
{\normalfont\normalsize\bfseries\filcenter}
{\normalsize\MakeUppercase{\chaptertitlename\ \spelled{chapter}}}
{1pc}
{\normalsize}
\titleformat*{\section}{\normalfont\normalsize\itshape}
\titleformat*{\subsection}{\normalfont\normalsize}
\titleformat*{\subsubsection}{\normalfont\normalsize}
\titleformat*{\paragraph}{\normalfont\normalsize\slshape}
\titlespacing*{\section}{0pt}{1.5\baselineskip}{\baselineskip}
\titlespacing*{\subsection}{0pt}{1.5\baselineskip}{\baselineskip}
\titlespacing*{\subsubsection}{0pt}{1.5\baselineskip}{\baselineskip}
\begin{document}
\blinddocument
\begin{quote}
\blindtext
\end{quote}
\end{document}
[1] View topic: Turabian style: quote environment
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10