diff --git a/CHANGELOG b/CHANGELOG index 71b2ef0..8c020d3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,6 +10,7 @@ version next - Adds contributing guidelines for moderncv (#275) - Fix incomplete social icons migration (Fontawesome 6) (#287) - Complete the color and style listings in the documentation (#291) +- Correct additional link signatures in the documentation (#293) version 2.5.1 (31 Jan 2026) diff --git a/manual/moderncv_userguide.tex b/manual/moderncv_userguide.tex index fe8137e..ccb7dd1 100644 --- a/manual/moderncv_userguide.tex +++ b/manual/moderncv_userguide.tex @@ -98,7 +98,7 @@ cvitem, cventry, cvdoubleentry, cvdoubleitem, cvtripleitem, cvlistitem, cvlistdoubleitem, cvcolumns, moderncvstyle, moderncvcolor, cvskill, cvskilllegend, cvskillplainlegend, cvskillhead, cvskillentry, nopagenumbers, name, born, address, email, link, social, phone, homepage, extrainfo, photo, quote, section, subsection, setlength, NewDocumentCommand, definecolor, colorlet, cvitemwithcomment, - recipient, subject, opening, closing, signature, postscript, enclosure, makelettertitle, makeletterclosing + recipient, subject, opening, closing, signature, postscript, enclosure, makelettertitle, makeletterclosing, httplink, httpslink, emaillink }, emphstyle={\color{cvblue}}, emph={[2] @@ -969,32 +969,32 @@ Adjusting one column affects the other ones as the total width of the skill matr \end{lstlisting} \subsection{Additional link commands}%% adapted from Cristina Sambo's documentation -To create links to a website or a email address, use the following commands: +To create links to a website or an email address, use the following commands: -A general weblink with optional text. +A general weblink with optional text. \begin{lstlisting} \link[]{} %% example \link[name of the link]{ftp://ftp.somesite.org} \end{lstlisting} -An HTTP link. The HTTP prefix is generated automatically and is not needed in the link argument. +An HTTP link. The \texttt{http://} prefix is generated automatically and is not needed in the link argument. \begin{lstlisting} - \link[]{} + \httplink[]{} %% example - \link[goto HTTP site]{www.somehttpsite.org} + \httplink[goto HTTP site]{www.somehttpsite.org} \end{lstlisting} -A HTTPS link. The HTTPS prefix is generated automatically and is not needed in the link argument. +A HTTPS link. The \texttt{https://} prefix is generated automatically and is not needed in the link argument. \begin{lstlisting} - \link[]{} + \httpslink[]{} %% example \httpslink[goto HTTPS site]{www.somesecuresite.org} \end{lstlisting} -An email link. The mailto prefix is generated automatically and is not needed in the link argument. +An email link. The \texttt{mailto:} prefix is generated automatically and is not needed in the link argument. \begin{lstlisting} - \link[]{} + \emaillink[]{} %% example \emaillink[my email]{jdoe@website.org} \end{lstlisting}