Text FormattingIndent not working?

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
cyanidebaby
Posts: 11
Joined: Tue Feb 07, 2017 1:56 pm

Indent not working?

Post by cyanidebaby »

Hello,

I can't seem to tab or indent the beginning of my paragraphs.
Any help would be welcomed. Thank you.

Code: Select all

Code, edit and compile here:
% PREAMBLE %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[a4paper,oneside,centered,noparindent,noparskip]{bookest}
\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage{nicefrac}
\usepackage{newpxtext} % Font for document instead of obsolete Palatino
\usepackage{hyperref} % Hyperlinks
\usepackage{tocloft} % Customization of TOC LOF LOT
\usepackage[table,xcdraw]{xcolor} % For shading in tables
\usepackage{pdfcolmk}
\usepackage{multirow}
\usepackage{textcomp}
\usepackage{ltablex}
\usepackage{array} % To define width of columns in long table
\usepackage{booktabs} % Nicer spacing in columns
\usepackage{siunitx} % To write Celsius, etc.
\usepackage{enumitem} % To create item lists
\usepackage{caption} % To change way captions are labelled
\usepackage{scrextend}
\usepackage{threeparttable} % For table notes + To allow footnote material to stay with the tabular environment
\usepackage{etoolbox} % To make table footnote font smaller
\usepackage{threeparttablex}
\appto\TPTnoteSettings{\footnotesize}
%\usepackage{showframe}
%\usepackage{chngcntr} % For continuous numbering of tables
%\counterwithout{table}{chapter}
% change the style of the caption numbering.
%\renewcommand{\thetable}{\arabic{table}}
% To format the paragraphs
\setlength{\parindent}{4em} % For indentations
\setlength{\parskip}{1em} % For space between paragrpahs
% Defining how Celsius and Fahrenheit appear
 
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Indent not working?

Post by Stefan Kottwitz »

There's no paragraph indentation because you set it to 0pt in line 49:

\setlength{\parindent}{0pt}

Remove the line or set it to the value you desire. Btw. you also set noparindent and noparskip as document class options in the first line, that also means no indentation.

Stefan
LaTeX.org admin
cyanidebaby
Posts: 11
Joined: Tue Feb 07, 2017 1:56 pm

Indent not working?

Post by cyanidebaby »

... er, yeah. Of course.
Thank you for your patience with all this.
Post Reply