Page Layoutspace between chapter and chapter name

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
prajeeshprakashp
Posts: 1
Joined: Mon Feb 29, 2016 8:27 am

space between chapter and chapter name

Post by prajeeshprakashp »

Code: Select all

\documentclass[12pt,a4paper]{report}
\usepackage[a4paper,hmargin={3cm,2.5cm},vmargin={2.5cm,2.5cm}]{geometry}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{setspace}
\usepackage{titlesec}
\renewcommand{\bibname}{REFERENCES}
\pagestyle{fancy}
\lhead{\tiny THESIS PRELIMINARY REPORT PART I}
\chead{}
\rhead{\tiny SOFTWARE DEFINED RADIO }
\renewcommand{\footrulewidth}{0.4pt}
\lfoot{\tiny DEPT. OF ECE }
\cfoot{\thepage}
\rfoot{}
\begin{document}
\doublespacing
\titleformat{\chapter}[display]
  {\normalfont\huge\bfseries\centering}
  {\chaptertitlename\ \thechapter}{20pt}{\Huge}
	\titlespacing*{\chapter}{0pt}{-40pt}{40pt}
\begin{abstract}
Digital communications..
\end{abstract}
\tableofcontents
\thispagestyle{empty}

\chapter{\textbf{Introduction}}
\setcounter{page}{1}
Digital communications devices designed with application-specific integrated circuit (ASIC)......
i need to know how to reduce the line space between chapter number and chapter title name

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

space between chapter and chapter name

Post by Johannes_B »

The chaterhead is tyeset doublespaced, just like you ordered it to be. Use \singlespacing when defining the titleformat.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply