posquit0 / Awesome-CV

:page_facing_up: Awesome CV is LaTeX template for your outstanding job application
LaTeX Project Public License v1.3c
23.03k stars 4.79k forks source link

removing date and position #155

Open tabish07 opened 7 years ago

tabish07 commented 7 years ago

Hi!! thanks for creating such an awesome template and sharing with all of us. There's a small issue im encountering:

resume I modified the Extra curricular as projects and as it contains a fixed array of 5. I'm unable to remove the position and date, if i remove position and date it gives me an error and if I keep it empty it shows empty space. please tell me how can i remove it and avoid empty space

johannesbottcher commented 6 years ago

Please show a minimal working example so we can better understand what you need to add or remove.

dan-r95 commented 6 years ago

Well, @tabish07 means something like this:

\cvsection{Projects}
\begin{cventries}
  \cventry
  {}
  {Tourism Website}
  {WESTRO Technolog.}
  {}
  {
  \begin{cvitems}
    \item {Lorem ipsum}
    \item {Lorem ipsum 2}
  \end{cvitems}
  }
  \end{cventries} 

He does not want the vertical space, if there is an empty "position" array element. (and date)

iCHAIT commented 6 years ago

@tabish07 Were you able to fix this?

iCHAIT commented 6 years ago

@johannesbottcher Any help on this? @dan-r95 has pointed out the exact thing I am looking for.

L-mNguyen commented 4 years ago

@iCHAIT Hi, this is an old issue, but were you able to solve this?

iCHAIT commented 4 years ago

Hey @L-mNguyen

No, I wasn't able to solve this :(

bradklassen commented 4 years ago

I am also having the same issue.

bu3alwa commented 2 years ago
% Define an environment for cventrynohead
\newenvironment{cventriesnohead}{%
    \vspace{\acvSectionContentTopSkip}
    \begin{center}
    }{%
    \end{center}
}
% Define an entry of cv information without sub headings
% Usage: \cventrynohead{<title>}{<description>}
\newcommand*{\cventrynohead}[2]{%
    \vspace{-2.0mm}
    \setlength\tabcolsep{0pt}
    \setlength{\extrarowheight}{0pt}
    \begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} L{\textwidth - 4.5cm} R{4.5cm}}
        \entrytitlestyle{#1} \\
        \multicolumn{2}{L{\textwidth}}{\descriptionstyle{#2}}

    \end{tabular*}%
}

Add this to the cls file and use the commands.