我觉得我可以保存下面列表中的某些行,但我不知道该怎么做。
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
如果您像在此/您的代码中一样手动执行此操作,则可能会面临失去一致性的风险。使用这些包更改序言中的格式。(我在这里没有这样做)。