As the title says, how can you reference a chapter or section title when using cref? To be more clear: I do not want the label "section" or "chapter", I want the actual title of the chapter or section..
\documentclass{article}
\usepackage[norsk]{babel}
\usepackage{tabularx}
\usepackage{apacite}
\usepackage{hyperref}
\usepackage{enumerate}
\usepackage[norsk,nameinlink]{cleveref}
\begin{document}
\section{Title}
\section{another title}
%I want to reference the first section here, with its name
\end{document}

\labelso you have something to refer to. Then use\cref{label name}and\nameref{label name}for the title. – daleif Mar 12 '15 at 10:01