I want all headings in the following LOF, LOT, and TOC to be flushed against the left margin. What I mean with headings here is the title of the chapters or sections which excludes the numbering. In fact, I want the numbering to be indented.What I do not want is justify the text, but rather flush it towards the indented numbering allowing more relaxed spacing between words and avoid forcing a hyphenation. I want this because it makes long titles break while hyphenating or exceed their specified area and reach the page numbering column
\documentclass[11pt]{book}
\usepackage{setspace}
\doublespacing
\usepackage{ragged2e}
\usepackage[htt]{hyphenat}
% BEGIN_FOLD
\usepackage[a4paper]{geometry}
% BEGIN_FOLD
\geometry{twoside=false, showframe=false,inner=1.05in,outer=1.05in,includemp=true,asymmetric=true,bindingoffset=0mm,marginparsep=0mm, marginparwidth=0mm}
\geometry{bottom=0.9in,vmarginratio=3:5,includehead=true, includefoot=true,headheight=8pt, headsep=14pt,footskip=10.9mm}
% END_FOLD
\usepackage{fancyhdr}
% BEGIN_FOLD
% Plain page style
\fancypagestyle{plain}{
\renewcommand{\headrulewidth}{0pt}
\fancyhead{}
%
\fancyfoot{}
\fancyfoot[C]{\thepage} % foot
}
% END_FOLD
% END_FOLD
\usepackage{tocloft}
\usepackage[nottoc]{tocbibind}
\usepackage{fontspec}
\usepackage[TS1]{fontenc}
\setmainfont{Georgia}
\usepackage{hyperref}
\hypersetup{colorlinks=true}
\usepackage[Omega]{gensymb}
\usepackage{graphicx}
\usepackage{caption}
\begin{document}
\pagestyle{plain}
\listoffigures
\clearpage
\listoftables
\clearpage
\tableofcontents
\mainmatter
\pagestyle{fancy}
\chapter{Introduction}
\section{Background}
\subsection{Review of Control or Compensation Based Techniques to Mitigate Grid Weakness Symptoms}
\section{Background About Round-Off Errors During the Inversion of Ill-Conditioned Matrices}
\begin{figure}
\caption{Impact of impedance ratios with different angles in the same quadrant on grid strength at the reference POI. Note that in all subfigures, the vector whose angle with respect to the reference is smaller will have larger impact}
\end{figure}
\begin{table}
\caption{Top Five Weakest Combinations of POIs Identified with Exhaustive Search Method and the Proposed Method for Case 1.}
\end{table}
\chapter{A Method to Identify Weak Points of Interconnection of Renewable Energy Resources}
\section{Proposed Method to Update ${Z}_{bus}$ to Account for Changes in the Series Impedance of a Branch}
\chapter{Vector-Based Approach to Analyze Transmission Network Effect on Interaction Among Renewables}
\section{A Mathematical Basis for Understanding the Relationship Between Interaction and Structural Changes in Power Grid}
\subsection{Combined Effect of $\bar{w}_{ij}$ Angle and Magnitude Near When its Angle is Near $\pm 90^{\degree}$}
\end{document}



\@tocrmargor unwanted hyphenation could happen – Al-Motasem Aldaoudeyeh Jun 10 '19 at 08:25\makeatletter \renewcommand{\@tocrmarg}{2cm} \makeatother. Depending on the other chapter and section headings you might have to adjust the distance according to your needs. Regarding the hyphenation you might want to have a look at: How to turn off hyphenation in ToC only? – leandriis Jun 10 '19 at 08:41\@tocrmarg, they may not be justified – Al-Motasem Aldaoudeyeh Jun 10 '19 at 08:50\makeatletter\renewcommand{\@tocrmarg}{2.55em plus 1fil}\makeatother? – esdd Jun 10 '19 at 09:17plus 1filmean? – Al-Motasem Aldaoudeyeh Jun 10 '19 at 09:21filis an internal length for dynamically growing whitespace, see also https://tex.stackexchange.com/questions/21022/what-is-the-difference-between-fil-and-fill/21028#21028 The suggestion is also mentioned in thetocloftdocumentation. – esdd Jun 10 '19 at 09:39