
I am writing my curriculum vitae, but I have one question.
In the first image, there are spaces between different sections.
(Between contact and phone, between education and Seoul~~,....)
Thus, I want to narrow down these gaps.
How can I solve this problem??
\documentclass[margin,line,letterpaper,11pt]{res}
\usepackage{times}
\usepackage{enumitem}
\setlength{\topmargin}{0.1in} \setlength{\textheight}{11in}
\setlength{\textwidth}{6in} \setlength{\oddsidemargin}{-.55in}
\setlength{\evensidemargin}{-.55in}
\oddsidemargin -.25in \evensidemargin -.49in \textwidth=5.4in
\newcommand{\ts}{\textsuperscript}
\newcommand{\block}[1]{
\vspace{.1in} \section{\sc #1}
}
\newcommand{\subblock}[1]{
\vspace{-.2in}\subsection*{#1}
}
\newenvironment{enum}{
\begin{enumerate}[leftmargin=5mm]
\setlength{\itemsep}{1mm}
}{
\end{enumerate}
}
\begin{document}
\name{\sc \LARGE }
\begin{resume}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\block{Contact}
Phone: \\
Email:
\\\vspace*{-6mm}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\block{Education}
University : \\
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\block{Other\\ Activities}
Club : \\
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{resume}
\end{document}
{}button.) Please complete the code so that your example is a complete, small document people can copy-paste-compile. Note that you ought not use\bf,\sfetc. - they are deprecated more than 20 years ago. Use\bfseries,\textbf{}etc. instead. – cfr Nov 28 '14 at 02:44timesis deprecated and ought not be used and you seem to have conflicting settings for your page layout dimensions. Consider usinggeometryto handle this. Oh, and you need some%s, too. – cfr Nov 28 '14 at 02:47\bfhas been deprecated for more than two decades now. I suggest you read a recent LaTeX documentation. – Martin Schröder Nov 28 '14 at 04:41