Awesome-CV icon indicating copy to clipboard operation
Awesome-CV copied to clipboard

removing date and position

Open tabish07 opened this issue 6 years ago • 8 comments

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

tabish07 avatar Sep 04 '17 05:09 tabish07

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

johannesbottcher avatar Oct 29 '17 13:10 johannesbottcher

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)

dan-r95 avatar Jan 16 '18 20:01 dan-r95

@tabish07 Were you able to fix this?

iCHAIT avatar Aug 26 '18 15:08 iCHAIT

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

iCHAIT avatar Aug 26 '18 15:08 iCHAIT

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

L-mNguyen avatar Mar 22 '20 15:03 L-mNguyen

Hey @L-mNguyen

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

iCHAIT avatar Mar 22 '20 15:03 iCHAIT

I am also having the same issue.

bradklassen avatar Apr 06 '20 02:04 bradklassen

% 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.

bu3alwa avatar Dec 17 '21 07:12 bu3alwa