The following MWE produces a "List of Algorithms" heading but no list below it.
\documentclass[a4paper,twoside,justified,marginals=raggedright,nofonts,nobib,]{tufte-book}
\RequirePackage[noend]{algpseudocode}
\RequirePackage[]{algorithm}
\begin{document}
\listofalgorithms
\chapter{Introduction}
\label{chap:intro}
\begin{algorithm}
\caption[Short caption]{A long caption}
\begin{algorithmic}[1]
\Require
Some constants
\end{algorithmic}
\end{algorithm}
\end{document}
Is there a way to fix it (such that the List of Algorithms looks like the List of Figures)?
tufte-bookseems to be the culprit here. It works forbookout of the box – May 15 '16 at 08:12