So fügen Sie einem Latex-Lebenslauf eine Homepage hinzu

So fügen Sie einem Latex-Lebenslauf eine Homepage hinzu

ich benutzediese Lebenslauf-Vorlage.

\homepageIn der Datei ist es nicht definiert resume.cls. Bedeutet das, dass ich keine Homepage-Adresse hinzufügen kann?

Antwort1

Es gibt zwei Fälle:


1 – Sie haben ein oder zwei \addresss verwendet

Sie müssen nur das Letzte verwenden:

main.tex

etc etc...
\documentclass{resume} % Use the custom resume.cls style

\usepackage[left=0.75in,top=0.6in,right=0.75in,bottom=0.6in]{geometry} % Document margins

\usepackage{hyperref}

\newcommand{\tab}[1]{\hspace{.2667\textwidth}\rlap{#1}}
\newcommand{\itab}[1]{\hspace{0em}\rlap{#1}}
\name{Rishi Shah} % Your name
\address{156 Kasturi, Balajinagar, Sangli 416416} % Your address
\address{Homepage: \href{https://tex.stackexchange.com/}{\texttt{https://tex.stackexchange.com/}}} % Your secondary addess (optional)
\address{(+91)9975808780 \\ [email protected]} % Your phone number and email

\begin{document}

%----------------------------------------------------------------------------------------

etc etc...

2 – Sie haben alle drei verfügbaren \addresss verwendet:

Zunächst müssen Sie resume.clsein paar kleine Änderungen vornehmen:

resume.cls

  1. Hinzufügen

    \let \@addressfour \relax
    

    nach \let \@addressthree \relax.

  2. Ändern Sie die Definition von \addressin

    \def \address #1{
        \@ifundefined{@addresstwo}{
            \def \@addresstwo {#1}
        }{
            \@ifundefined{@addressthree}{
                \def \@addressthree {#1}
            }{
                \@ifundefined{@addressfour}{
                    \def \@addressfour {#1}
                }{
                    \def \@addressone {#1}
                }
            }
        }
    }
    
  3. Ändern \renewcommand{\document}{}:

    \renewcommand{\document}{
        \ori@document  % Begin document
        \printname % Print the name specified with \name
        \@ifundefined{@addressone}{}{ % Print the first address if specified
            \printaddress{\@addressone}}
        \@ifundefined{@addresstwo}{}{ % Print the second address if specified
            \printaddress{\@addresstwo}}
        \@ifundefined{@addressthree}{}{ % Print the third address if specified
            \printaddress{\@addressthree}}
        \@ifundefined{@addressfour}{}{
            \printaddress{\@addressfour}}
    }
    

Nun müssen Sie nur noch einen weiteren \addressBefehl hinzufügen:

main.tex

etc etc...
%----------------------------------------------------------------------------------------

\documentclass{resume} % Use the custom resume.cls style

\usepackage[left=0.75in,top=0.6in,right=0.75in,bottom=0.6in]{geometry} % Document margins

\usepackage{hyperref}

\newcommand{\tab}[1]{\hspace{.2667\textwidth}\rlap{#1}}
\newcommand{\itab}[1]{\hspace{0em}\rlap{#1}}
\name{Rishi Shah} % Your name
\address{156 Kasturi, Balajinagar, Sangli 416416} % Your address
\address{Somewhere in the world} % Your secondary addess (optional)
\address{(+91)9975808780 \\ [email protected]} % Your phone number and email
\address{Homepage: \href{https://tex.stackexchange.com/}{\texttt{https://tex.stackexchange.com/}}}

\begin{document}

%----------------------------------------------------------------------------------------

etc etc...

verwandte Informationen