[Tex/LaTex] Cleveref: Change behaviour of \Cref to use the abbreviated form

cleverefcross-referencing

The journal International Journal of Solids and Structures uses always capitalised and abbreviated form of references, i.e. Fig. 1, Eq. 1, even at the beginning of a sentence.

I use the package cleveref to adjust this globally.
However, I have not figured it out how to abbreviate a reference at the beginning of a sentence using \Cref{}. I like to stick to \Cref{} to be able to change this style in case another journal uses a different style.

MWE

\documentclass{article}
\usepackage[capitalise]{cleveref}
\begin{document}
\begin{equation}
  c^2 = a^2 + b^2
  \label{eqn}
\end{equation}

\Cref{eqn} shows an interesting result.
\end{document}

Did I overlook an option in the documentation?

Current cleveref version as of 27.07.2015: 0.19.1, released May 2014, http://www.dr-qubit.org/cleveref.html

Update: no change in version 0.21 (June 2017)

Best Answer

From the (deleted) answer and comment by @Christian Hupfer and my own search, there are three possibilities:

  1. \renewcommand{\Cref}[1]{\cref{#1}}
    This does not work together with the poorman option
  2. Replace Cref by cref, e.g. with
    $ sed 's/\\Cref{/\\cref{/g' manuscript.tex > manuscript-new.tex
  3. Defining the capital labels for figure, equation, tabular, etc. explicitly (my pick):

    \Crefname{equation}{Eq.}{Eqs.}
    \Crefname{figure}{Fig.}{Figs.}
    \Crefname{tabular}{Tab.}{Tabs.}
    

Note, the package author of cleveref is not going to add this as a package option (e.g. abbrevall) since this is considered poor writing style (see comment by Toby Cubitt).