Curricula Vitae / RésumésSkill section Wilson Resume/CV side to side

ModernCV, Friggeri, Plasmati, Classicthesis-CV, and more
Post Reply
Feike90
Posts: 1
Joined: Sun Nov 01, 2015 5:59 pm

Skill section Wilson Resume/CV side to side

Post by Feike90 »

Hi,

I would like to display the skill groups side to side from the Skill section in the Wilson cv template. They are now listed underneath each other, for example:

Programming languages
- Python
- etc.

Applications
- MS. Office

I would like to display these two besides each other. I tried to adjust the minipage environment, but with no success..

Hope you can help me out!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Skill section Wilson Resume/CV side to side

Post by Johannes_B »

Using an updated template, you can use the following piece of code:

Code: Select all

\begin{minipage}[t]{.45\linewidth}
\begin{skillgroup}{Programming Languages}%
	\skill{Ruby} -- MRI 1.8.7, 1.9.2
	\skill{ASP.NET, C\#, VB.NET}
	\skill{PHP}
	\skill{Java/Scala}
\end{skillgroup}
\end{minipage}\hfill
\begin{minipage}[t]{.45\linewidth}
\begin{skillgroup}{Web Development}%
  \skill{HTML5, CSS3/SASS, JavaScript/CoffeeScript/jQuery}
	\skill{Ruby on Rails v3.1}
	\skill{Test:Unit, RSpec, Cucumber, Selenium} -- automated testing frameworks
	\skill{Apache/Nginx Web Servers}
\end{skillgroup}
\end{minipage}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply