表格环境中的列表
因此,我正在撰写一份简历,我想使用漂亮的 itemize
环境来列出 tabular
环境中的一些内容。不幸的是,事情最终看起来有点 ,这根本不是我想要的。具体来说,我希望逐项环境与“大公司名称”紧密相连,以便它显示为“软件开发实习生”,同样在底部。我当前的代码看起来有点像这样:
\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
, 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
paralist
包,它定义了compactitem
环境(这是一个紧凑的itemize)。它还以这种方式重新定义 itemize,但有一些选项可以保留它,例如olditem
。在您的情况下,我只需
在表格内加载并使用
\begin{compactitem} ... \end{compactitem}
。You can use the package
paralist
which defines among others thecompactitem
environment (which is a compact itemize). It also redefines itemize that way, but there are options to leave it, likeolditem
.In your case I would just load
and use
\begin{compactitem} ... \end{compactitem}
inside tables.