
다음 목록에 일부 줄을 저장할 수 있을 것 같은데 어떻게 해야 할지 모르겠습니다.
예를 들어 분할은 broadband networks
피하고 싶은 것입니다.
다음은 최소한의 예입니다.
\documentclass[margin,line]{res}
\usepackage[colorlinks=true ,urlcolor=blue,urlbordercolor={0 1 1}]{hyperref}
\usepackage{enumitem}
\setlist[itemize]{leftmargin=*}
\usepackage{url}
\oddsidemargin -.5in
\evensidemargin -.5in
\textwidth=6.0in
\itemsep=0in
\parsep=0in
\topmargin=0in
\topskip=0in
\newcommand{\tab}{\hspace*{2em}}
\usepackage{multicol}
\newcommand{\Myoops}[1]{\textit{#1}}
\usepackage{graphicx}
\begin{document}
\name{\LARGE Georgios Samaras}
%MUST leave a blank line after this
\begin{resume}
\section{\sc Conferences Events} All the conferences/events where held in Athens
\begin{multicols}{4}
\begin{itemize}
\item Broadband networks.
\item Internet security.
\item \href{http://en.wikipedia.org/wiki/Next-generation_network}{NGN}s
\item E-Learning and Webinars.
\item E-Business.
\item Windows Phone (Microsoft).
\item Java, C$^\sharp$ and F$^\sharp$.
\end{itemize}
\end{multicols}
\end{resume}
\end{document}
그러나 문서에는 가 필요하며 res.cls
이를 볼 수 있습니다.여기.
그건 그렇고, 누군가 공간을 절약하는 방법에 대한 다른 아이디어가 있다면 알려주십시오. 저장하는 모든 줄은 많은 도움이 되기 때문입니다.
멀티콜에 4를 사용하면 다음과 같은 결과를 얻습니다.
답변1
nosep
몇 가지 옵션 중 하나는 옵션 itemize
(패키지 기능 )으로 사용하는 것입니다 enumitem
. \raggedright
이상한 정당화가 모양을 망치지 않도록 추가로 추가하십시오 .
tasks
모험심이 있다면 여러 열 목록을 처리하는 데 좋은 패키지 사용을 고려할 수도 있습니다 . tasks
필요에 따라 치수를 변경할 수 있도록 가능한 모든 옵션이 포함된 환경을 추가했습니다 . 자세한 내용은 tasks
매뉴얼을 참조하세요.
\documentclass[margin,line]{res}
\usepackage[colorlinks=true ,urlcolor=blue,urlbordercolor={0 1 1}]{hyperref}
\usepackage{enumitem}
\setlist[itemize]{leftmargin=*}
\usepackage{url}
\oddsidemargin -.5in
\evensidemargin -.5in
\textwidth=6.0in
\itemsep=0in
\parsep=0in
\topmargin=0in
\topskip=0in
\newcommand{\tab}{\hspace*{2em}}
\usepackage{multicol}
\newcommand{\Myoops}[1]{\textit{#1}}
\usepackage{graphicx}
\usepackage[more]{tasks}
\begin{document}
\name{\LARGE Georgios Samaras}
%MUST leave a blank line after this
\begin{resume}
\section{\sc Conferences Events} All the conferences/events where held in Athens
\begin{multicols}{4}
\raggedright
\begin{itemize}[nosep]
\item Broadband networks.
\item Internet security.
\item \href{http://en.wikipedia.org/wiki/Next-generation_network}{NGN}s
\item E-Learning and Webinars.
\item E-Business.
\item Windows Phone (Microsoft).
\item Java, C$^\sharp$ and F$^\sharp$.
\end{itemize}
\end{multicols}
With \verb|tasks|:
\begin{tasks}[style=itemize,label=\labelitemi,before-skip=0pt,
after-skip=-2pt,after-item-skip=0pt,
column-sep=1em,label-width=0.6em,label-offset=0.1em,
item-indent=0.2em,label-align=left](3)
\task Broadband networks.
\task Internet security.
\task \href{http://en.wikipedia.org/wiki/Next-generation_network}{NGN}s
\task E-Learning and Webinars.
\task E-Business.
\task Windows Phone (Microsoft).
\task Java, C$^\sharp$ and F$^\sharp$.
\end{tasks}
\end{resume}
\end{document}
geometry
참고로 수동 조정 대신 패키지를 사용하여 페이지 레이아웃을 변경하는 것이 좋습니다 .
\sc
또한 글꼴 모양에 대해 두 글자 명령( )을 사용하지 말고 \scshape
. 그런데 섹션 제목을 수정하는 것은 패키지 sectsty
중 하나를 사용하는 것이 더 좋습니다 titlesec
. 이 코드/귀하의 코드에서처럼 수동으로 수행하면 일관성이 손실될 위험이 있습니다. 이 패키지를 사용하여 서문의 형식을 변경하세요. (저는 여기서 하지 않았습니다).