2

I am using KOMA-Script (scrartcl). I am trying to figure out how can I achieve the section formatting similar to this figure.

Section Style

I found a CV example using res class (CV using res class), but I want to use it in another document which uses scrartcl.

4
  • Do you have a question? Is something not working? If so, please show us the code you have (not all of it: a minimal working example (MWE)) and explain what you are stuck on! Commented Nov 17, 2014 at 2:42
  • I was trying to modify the res.cls class to achieve the section formatting. I wanted to know which packages I should try to achieve the formatting. I will update the question with a short working example if I can. Commented Nov 17, 2014 at 2:52
  • 1
    You should work with the facilities Koma-Script offers if you are using scrartcl. Commented Nov 17, 2014 at 2:59
  • 1
    The maintainer of KOMA-Script has posted a solution: komascript.de/node/1866 Commented Nov 17, 2014 at 9:55

2 Answers 2

7

Using enumitem makes for easy adjustment within a regular list (description) environment:

enter image description here

\documentclass{scrartcl}
\usepackage{enumitem}
\begin{document}
\begin{description}[leftmargin=7em, labelwidth=7em, labelsep=0pt]
  \item[OBJECTIVE]
  A position in the field of computers with special interests in business applications
  programming, information processing, and management systems.

  \item[EDUCATION]
  \textsl{Bachelor of Science}, Interdisciplinary Science \\
  Rensselaer Polytechnic Institude, Troy, NY, expected December 1990 \\
  Concentration: Computer Science \\
  Minor: Management  
\end{description}
\end{document}
7

As @cfr mentioned in a comment, KOMA-Script can do stuff pretty good on its own. Here an example using labeling. You can change the font of the labeling label using the \addtokomafont mechanism. The indent is taken by the length of the argument of the labeling environment. Markus Kohm suggests some further improvements, like putting the \MakeUppercase to a global place. This is nice, since you can change it add one place. Please have a look at the modified example.

\documentclass{scrartcl}
\usepackage{microtype}
\newcommand*{\UpperCaseLS}[1]{\textls{\MakeUppercase{#1}}}
\addtokomafont{labelinglabel}{\sffamily\bfseries\UpperCaseLS}
\begin{document}
\begin{labeling}[\enskip]{education}
\item[objective] A position in the field of computers with special interests
  in business applications programming, information processing, and management
  systems.
\item[education]\raggedright
  \textsl{Bachelor of Science}, Interdisciplinary Science \\
  Rensselaer Polytechnic Institude, Troy, NY, expected December
  1990 \\
  Concentration: Computer Science \\ 
  Minor: Management
\end{labeling}
\end{document}

maxKomaLabelingExt

Little hint: Don't use uppercase, sans serif and bold face.

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.