I am trying to change "chapter" to "Chapter" when autoreferencing the label
I have looked for a solution and some comment in this closed question Change text in LaTeX chapter titles from "Chapter" to "chapter" suggested to use renew command
I have used "babel" as well as "renewcommand" but nothing has changed.
Can someone please help? Minimum working example below.
%% *** Add any desired options. ***
\documentclass{book}
\usepackage{siunitx}
\usepackage{nomencl}
\usepackage{amsmath}
\usepackage{nicefrac}
\usepackage{nomencl}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage[english]{babel}
\usepackage{hyperref}
\renewcommand{\chaptername}{chapter}
\begin{document}
\chapter{Before We Begin}
In \autoref{Chapter2}, we will talk about how to live a full life.
\chapter{Begin}
\label{Chapter2}
\end{document}





cleferrefpackage has an option for capitalization:\usepackage[capitalise,noabbrev,nameinlink]{cleveref}and\cref{Chapter2}. – samcarter_is_at_topanswers.xyz May 21 '17 at 22:54nomenclandamsmathpackages twice. Nothing good is going to come from it. – Mico May 22 '17 at 08:46