itemizeでアイテムを絞り込む

itemizeでアイテムを絞り込む

以下のリストのいくつかの行を保存できるような気がしますが、方法がわかりません。

ここに画像の説明を入力してください

たとえば、 での分割は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

いくつかのオプションのうちの 1 つは、 (パッケージの機能)nosepのオプションとして使用することです。奇妙な正当化によって見た目が損なわれないように、さらに追加します。 itemizeenumitem\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また、フォントの形状については2 文字のコマンド ( ) を避けて を使用してください\scshape。ちなみに、セクション タイトルの変更は、いずれかsectstytitlesecパッケージで行う方がよいでしょう。このコードや自分のコードのように手動で行うと、一貫性が失われるリスクがあります。これらのパッケージを使用して、プリアンブルの書式を変更します (ここでは行いませんでした)。

関連情報