I would like to decrease the horizontal indent to zero on my LOT and LOF. (i.e. I want the items to appear flush with the left margin) I previously looked through the forum and found somebody asking a similar question but now I can't find it again! Regardless, the question was answered by pointing the user to the tocloft package. I have read the documentation and tried to implement it on some simple code as follows...
Code: Select all
\documentclass[twoside]{book}
\makeatletter
\renewcommand{\l@kind}{0 em}
\makeatother
\pagestyle{empty}
\begin{document}
\listoftables
\chapter{test}
\begin{table}
\begin{center}
\begin{tabular}{c}
4\\
4\\
4\\
\end{tabular}
\end{center}
\caption{caption}
\label{label}
\end{table}
\end{document}
Can anyone help with this please?