表格环境中的列表

发布于 2024-09-16 01:44:46 字数 690 浏览 5 评论 0原文

因此,我正在撰写一份简历,我想使用漂亮的 itemize 环境来列出 tabular 环境中的一些内容。不幸的是,事情最终看起来有点 this,这根本不是我想要的。具体来说,我希望逐项环境与“大公司名称”紧密相连,以便它显示为“软件开发实习生”,同样在底部。我当前的代码看起来有点像这样:

\textsc{May 2010 to Aug 2010}
    & Software Development Intern  \\
    & \textsc{BIG COMPANY NAME} \\
    & \begin{itemize}
        \setlength{\itemsep}{0pt}
        \setlength{\parskip}{0pt}
        \setlength{\parsep}{0pt}
        \setlength{\partopsep}{0pt}
        \setlength{\topsep}{0pt}
        \item item1
        \item item2
    \end{itemize} \\
    & \small{Cool Details}\\

但是它根本没有完成这项工作。乳胶大师们有什么建议吗?

So I'm writing up a CV and I would like to use the nifty itemize environment to list some things within a tabular environment. Unfortunately, things end up looking a bit
this, which isn't at all what I want. Specifically, I want to the itemize environment to hug closely to "BIG COMPANY NAME" so that it appears as "Software Development Intern" does, and likewise at the bottom. My current code looks a bit like so:

\textsc{May 2010 to Aug 2010}
    & Software Development Intern  \\
    & \textsc{BIG COMPANY NAME} \\
    & \begin{itemize}
        \setlength{\itemsep}{0pt}
        \setlength{\parskip}{0pt}
        \setlength{\parsep}{0pt}
        \setlength{\partopsep}{0pt}
        \setlength{\topsep}{0pt}
        \item item1
        \item item2
    \end{itemize} \\
    & \small{Cool Details}\\

Buuut it's not doing the job at all. Any suggestions, Latex gurus?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

停顿的约定 2024-09-23 01:44:46

您可以使用paralist 包,它定义了compactitem 环境(这是一个紧凑的itemize)。它还以这种方式重新定义 itemize,但有一些选项可以保留它,例如 olditem
在您的情况下,我只需

\usepackage[olditem,oldenum]{paralist}

在表格内加载并使用 \begin{compactitem} ... \end{compactitem}

You can use the package paralist which defines among others the compactitem environment (which is a compact itemize). It also redefines itemize that way, but there are options to leave it, like olditem.
In your case I would just load

\usepackage[olditem,oldenum]{paralist}

and use \begin{compactitem} ... \end{compactitem} inside tables.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文