General ⇒ chapter heading position
Re: chapter heading position
how to control the vertical spacing between
chapter1
and
Name of the Chapter?
The default spacing seems to big. I tried \singlespacing but with no effect
Another question
I've set
\setlength{\parindent}{0.30in} % First line indentation
However, only the 2nd and following paragraphs show a planned indent
Sorry to bother you guys with such basic questions.
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 heading position
change the value 20pt in the \titleformat command that we discussed, for example:
Code: Select all
\titleformat{\chapter}[display]
{\centering\large\bfseries}
{\MakeUppercase{\chaptertitlename}\ \thechapter}{10pt}{\large\MakeUppercase}
Code: Select all
\usepackage[indentafter]{titlesec}
chapter heading position
i want to do the following:
Chapter 1 (in right most corner)
ChaperHeading (in center)
Code: Select all
\begin{flushright}
\large{\chapter{\emph{\textbf{Chapter 1}}}}
\end{flushright}
\begin{center}
\huge{\textbf{Introduction}}
\end{center}
need some help
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
chapter heading position
The titlesec package has already been mentioned several times. You just need to read a little bit in its manual.sabahmed wrote:Hi All,
i want to do the following:
Chapter 1 (in right most corner)
ChaperHeading (in center)
[…]
Code: Select all
\documentclass[11pt]{report}
\usepackage[T1]{fontenc}
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\bfseries\huge}
{\filleft\chaptertitlename\ \thechapter}
{4ex}
{\filcenter\Huge}
\begin{document}
\chapter{Foo}
\end{document}
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10