构建自定义 \itemize

构建自定义 \itemize

我想创建一份类似于所示的简历这里。但我不知道创建这些文本块的最佳方法是什么。我想过使用 itemize。但我不知道如何将 \item 的标签格式化为斜体。当我尝试将标签分布在多行上时(例如,当标签的内容对于一行来说太长时),我也遇到了麻烦。

下面是我正在尝试做的一个例子:

June 2007  Responsible for the visual design and HTML / CSS
–present   templating for a social media site where people
           discuss their unusual pets.

Another    Some text
Date

标签应为斜体。如能得到任何帮助,我将不胜感激。

答案1

有很多方法可以创建简历 - 也许另一个答案将演示使用的方法moderncv

如果您想使用,那么您可以使用功能极其强大且用户友好的包itemize对其进行自定义(以及所有其他列表类型环境,例如enumerate、等) 。descriptionenumitem

一个非常简单的实现给出了

在此处输入图片描述

\documentclass{article}
\usepackage{enumitem}
\usepackage{lipsum}

\begin{document}

\begin{itemize}[font=\itshape]
    \item[June 2007|Oct 2008] \lipsum[1]
    \item[Nov 2008|present] \lipsum[2]
\end{itemize}

\end{document}

您还可以使用(例如)

\begin{itemize}[font=\itshape,align=parleft,labelwidth=2cm]
    \item[June 2007|\\present] \lipsum[1]

这使

在此处输入图片描述

欲了解更多信息,您可能想看看

简历/履历表的 LaTeX 模板

答案2

以下是使用 的简单示例moderncv。您可以在 TeX 发行版文件夹中找到一些主题和模板文件以供使用moderncv

\documentclass[11pt,a4paper]{moderncv}
\PassOptionsToPackage{pdfpagelabels=false}{hyperref} 
\moderncvtheme[blue]{casual}
\firstname{Felis}
\familyname{Caracal}
\address{Serengeti}{Serengeti - South Africa}
\mobile{+1-555-MIAOUW}
\phone{+1-555-PURRRR}
\email{[email protected]}
\homepage{http://en.wikipedia.org/wiki/Caracal}
\photo[64pt]{Caracal001}
\begin{document}
\maketitle
\section{Summary}
Goal oriented. Experienced in strategic planning and element of surprise. Huge jumps in career. Expert in predator-prey dynamics.

\section{Professional Experience}
\subsection{Field Experience}
\cventry{2003--2005}{Team Leader}{Caracals! Logistics}{Serengeti}{\href{http://en.wikipedia.org/wiki/Serengeti}{Wiki Page}}{%
A selected collection of the completed projects:%
\begin{itemize}%
\item Lead my team to hit various targets.
\item Avoided many threats.
\end{itemize}}
\cventry{2005--present}{Freelancer}{}{}{}{%
Carried out individual population control experiments
}
\section{Languages}
\cvlanguage{Gibberish}{Native}{}
\section{Interests}
\cvline{High Jump}{Professional}
\cvline{Cooking}{Beginner}
\end{document}

在此处输入图片描述

相关内容