posquit0 / ama

💭 Ask me anything!
https://cv.posquit0.com
15 stars 5 forks source link

How to align Skills to the Left for Awesome-CV resume template #3

Closed throwAway1023 closed 2 years ago

throwAway1023 commented 5 years ago

Hey, I'm having a hard time aligning the skills to the left. I've been trying for a long time but I'm new to Latex, can you please help me out? :(

Issue (current state): Capture

Desired: Capture10

This is the code for the /cvskills: % Define an environment for cvskill \newenvironment{cvskills}{ \begin{center} \setlength\tabcolsep{1ex} \setlength{\extrarowheight}{0pt} \begin{tabular}{\textwidth}{@{\extracolsep{\fill}} r L{\textwidth \real{0.9}}} }{ \end{tabular} \end{center} } % Define a line of cv information(skill) % Usage: \cvskill{}{} \newcommand{\cvskill}[2]{ \skilltypestyle{#1} & \skillsetstyle{#2} \ }

This is the code for the skills.tex file that I import as a section dir in resume.latex:

\cvsection{Skills}

\begin{cvskills}

\cvskill {Languages:} % Category {\small Go, Scala} % Skills

\cvskill {Technologies:} % Category {\small Kubernetes, AWS, Docker} % Skills

\end{cvskills}

Please help, it's urgent

throwAway1023 commented 5 years ago

I don't want that indentation before Mobile dev, please let me know if the question is not clear

Eyituoyo commented 2 years ago

did you ever figure this out?

posquit0 commented 2 years ago

Hi, Thank you for using AwesomeCV. I haven't touched that project for a long time so I can't help.

Please post your issue with details on Awesome-CV GitHub issues. Then, you can get help from people.

This is a place to post personal questions. 😄

yuvalnsn commented 10 months ago

You need to add \raggedright to the command. In awesome-cs.cls: change -

\newcommand*{\cvskill}[2]{%
 \honordatestyle{#4} & \honorpositionstyle{#1}, & \honortitlestyle{#2} & \honorlocationstyle{#3} \\
}

to -

\newcommand*{\cvskill}[2]{%
  \raggedright \honordatestyle{#4} & \honorpositionstyle{#1}, & \honortitlestyle{#2} & \honorlocationstyle{#3} \\
}