posquit0 / Awesome-CV

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

Skills section going off the page #436

Open giorgi3092 opened 1 year ago

giorgi3092 commented 1 year ago

When I list more items in the skills section, the line goes off the page. Any way to fix this? image

github-actions[bot] commented 1 year ago

:wave: Welcome! Looks like this is your first issue.

Hey, thanks for your contribution! Please give us a bit of time to review it. 😄

cats256 commented 1 year ago

Please share the code. You also can try to add \newline to the end of the skill description where the line goes off the page.

giorgi3092 commented 1 year ago

Thanks, \newline somewhat worked.

ThorpeJosh commented 1 year ago

I'm having this issue too. Played around with formatting and got it working by changing alignment the entire skills section to raggedLeft instead of centre. No idea why this worked but something strange is going on with the tabular*

dcsim commented 9 months ago

I never submitted a commit for this but swapping m column for p column and adjusting the width in the cvskill environment fixes it. Code below defines a new column type S you can use in cvskill, just swap L for S as an example.

\newcolumntype{S}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}p{#1}}

Edit: @OJFord - There's a PR pending that implements this, see #489.