In regard to these questions
customize of autoref and \autoref does not expand abbreviation automatically at beginning of line
I would like to know, how I can customize the pasting of additional brackets.
Example:
Instead of showing
, Latex should display
when I use \autoref.
Minimal coding example:
\documentclass[journal,comsoc]{IEEEtran}
\usepackage[T1]{fontenc}% optional T1 font encoding
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{url}
\usepackage{enumitem}
\usepackage{setspace}
\usepackage{color,soul}
\usepackage{siunitx}
\usepackage{float}
\usepackage{subcaption}
\usepackage{cleveref}
\usepackage{hyperref}
\interdisplaylinepenalty=2500
\usepackage[cmintegrals]{newtxmath}
\begin{document}
\begin{figure}[htbp!]
\centering
\begin{subfigure}{0.2\textwidth}
\includegraphics[width=\textwidth]{Pictures1}
\caption{Nice image1}
\label{fig:NiceImage1}
\end{subfigure}
\hfill
\begin{subfigure}{0.2\textwidth}
\includegraphics[width=\textwidth]{Pictures2}
\caption{Nice image 2}
\label{fig:NiceImage2}
\end{subfigure}
\caption{Two images}
\label{fig:NiceImage}
\end{figure}
\autoref{fig:NiceImage1}
% Latex should display and reference to Figure 1(a)
\end{document}
I am sorry, if this is a duplicate of an already answered question!

cleverefshould be loaded after, not before,hyperref. – Mico Aug 06 '17 at 13:27