Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
throwAway1023 opened this issue Apr 17, 2019 · 4 comments
Closed

Comments

@throwAway1023
Copy link

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
Copy link
Author

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

@Eyituoyo
Copy link

did you ever figure this out?

@posquit0
Copy link
Owner

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
Copy link

yuvalnsn commented Nov 24, 2023

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} \\
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants