prefacing that I am a total beginner and trying to put my CV into LaTeX as my first project.
I am using the currvita package and googled how to do hanging indents, as I want to use it in a certain section. Here is what I have as an example (I commented out the part that I can't get to work):
\documentclass{article}
\usepackage[NoDate]{currvita}
%\usepackage{hanging}
%\newlength{\hangwidth}
%\newcommand{\newhang}[1]{\settowidth{\hangwidth}{#1}\par\hangparas{\hangwidth}{1}#1}
\begin{document}
\begin{cv}
\begin{cvlist}{Some section}
\item[07/2014--08/2014] \textbf{Some school}\\
\textit{Some degree bla bla}\\
Activities: Lorem ipsum dolor sit amet, consectetur adipiscing elit.Phasellus volutpat eu orci vitae eleifend.Praesent sed orci commodo, venenatis neque vel, pulvinar velit.Mauris ullamcorper tellus sed quam pellentesque, vitae sagittis nisl dapibus.
%\newhang{Activities: }Lorem ipsum dolor sit amet, consectetur adipiscing elit.Phasellus volutpat eu orci vitae eleifend.Praesent sed orci commodo, venenatis neque vel, pulvinar velit.\\Mauris ullamcorper tellus sed quam pellentesque, vitae sagittis nisl dapibus.
\end{cvlist}
\end{cv}
\end{document}
What I want to have is a hanging indent after the word "Activities", starting in the next line. I came across this thread Align text under a colon, which is exactly what I need. I tried to implement Frank Epps solution using the hanging package.
However I cannot get it to work within the cv and cvlist environment. If I put the newhang line right under "begin document", it seems to work. However, as soon as I put it within the cvlist, nothing changes. To be more specific, I get no error message, but also not the desired result (as seen below in the picture). Any hints?


cvlistenvironment? Note that I've never used either of these packages, so the answer may well be 'no'. – cfr Apr 23 '16 at 13:12