[Tex/LaTex] Adding address to article

addresses

I'm using this template, and editing it on writeLaTeX. I'd like to add my address to the title section underneath my email and phone number. I've tried using "\address", but this produces this message: Undefined control sequence. l.35 \address {Test address}.

I've also tried modifying the "namesection" part of the class file without any luck. What am I doing wrong?

Best Answer

This template does not define a separate command for address in the title. The same applies to the phone number, as in their example they have added manually themselves. You can do the same. Simply add your address by appending \\ Your address to the \namesection:

\namesection{Debarghya}{Das}{ % Your name
\urlstyle{same}\url{http://debarghyadas.com} \\ % Your website, LinkedIn profile or other web address
\href{mailto:dd367@cornell.edu}{dd367@cornell.edu} | 607.379.5733 \\Your address goes here!% Your contact information
}

enter image description here