-
Notifications
You must be signed in to change notification settings - Fork 0
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
Better \cvskill #7
Comments
Due to the format of AwesomeCV as opposed to AltaCV, this would need to be modified to exist in a grid of |
Alternatively, it might be useful to provide a way to label skills with proficiency level (1-5) then as these are read in they are put into a growing environment (similar to how the header was incrementally built) then a Another alternative (choices, got to love them): Organize classes of skills in order of proficiency so:
gets formatted to a sort of:
so skills are ordered in proficiency level within their category. |
See: https://tex.stackexchange.com/questions/6988/how-to-sort-an-alphanumeric-list for how to possible handle the sorting. It uses the |
\definecolor{white}{RGB}{255,255,255}
\definecolor{gray}{HTML}{4D4D4D}
\definecolor{maingray}{HTML}{B9B9B9}
\newcommand\skills[1]{
\begin{tikzpicture}
\foreach [count=\i] \x/\y in {#1}{
\draw[fill=maingray,maingray] (0,\i) rectangle (6,\i+0.4);
\draw[fill=white,gray](0,\i) rectangle (\y,\i+0.4);
\node[above right] at (0,\i+0.4) {\x};
}
\end{tikzpicture}
} used as: \skills{{b/2}}
\skills{{a/1}} to approximate the skills of Twenty Seconds CV I would want the fill part of the bar graph to use the |
I much prefer the cvskill as used in AltaCV
Usage:
Prints as a bold English followed by as much whitspace as possible (
\hfill
then 2 circles with same color asawesome
(same color used throughout the CV), then 3 gray circles. Allows rating a skill on a Likert scale with 5 levels.The text was updated successfully, but these errors were encountered: