我正在用 LaTeX 写简历,下图就是我现在的状态。代码也是输入的。
\section{\underline{\textbf{EDUCATION}}}
\begin{itemize}
\item \textbf{\textit{Name of University 2, Location 2 }}\\
Programme Read 2 \hspace\fill Month2 Year2.
\item \textbf{\textit{Name of University 1, Location 1 }}\\
Programme Read 1 \hspace\fill Month1 Year1.
\begin{enumerate}
\item \textbf{Research Projects}
\end{enumerate}
\end{itemize}
我需要的帮助是,我更喜欢研究项目不提供编号。但是,应缩进 10 毫米(制表符的长度)。然后,项目列表将写在研究项目缩进级别与标题相同,并且未指定数字或任何形式的列表。我还要补充一点,我已将项目符号(从\itemize
)全局设置为使用 移到最左侧\setlist[itemize]{leftmargin=*}
。如果我能得到有关如何使用CV
、moderncv
类的指导以及有关模板的帮助,那也很好。
新的可行代码如下:
\section{\underline{\textbf{EDUCATION}}}
\begin{itemize}
\item \textbf{\textit{Name of University 2, Location 2 }}\\
Programme Read 2 \hspace\fill Month2 Year2.
\item \textbf{\textit{Name of University 1, Location 1 }}\\
Programme Read 1 \hspace\fill Month1 Year1.
\begin{enumerate}[label={}] \itemsep -1.5pt
\item \textbf{Projects}
\item \textit{Project Title 1}
\item \textit{Project Title 2}
\end{enumerate}
\end{itemize}
答案1
根据要求,这里有一些使用该tabbing
环境的代码。正如我提到的,这个网站上的人显然不经常使用它,这让人想起使用打字机。优点(在我看来)是它不会在周围添加任何空格,就像tabular
或itemize
会一样,让您拥有更多的控制权。
第一行定义了标签的位置:\hspace*{10mm} \= \kill
这将定义第一个标签10mm
从左边距开始,并\kill
确保该行不会输出。
任何后续行可能看起来像这样:some text (or empty) \> more text \\
。请注意,如果初始文本长于提供的空间,则不会换行,文本将继续位于其他文本之上。
在下面的代码中,我还添加了一个使用 documentclass 提供的宏的代码版本moderncv
(根据问题的标签,您正在使用它)。这将大大改变输出,但它已经针对 CV 类型的文档进行了优化。
\documentclass{moderncv}
\usepackage[utf8]{inputenc}
\usepackage[margin=3cm]{geometry}
\moderncvstyle{casual}
\firstname{FN}
\familyname{FN}
\address{}
\begin{document}
\makecvtitle
\section{\textsc{Education}}
\cventry{mm/yy}{Programme 4}{University 4}{Location 4}{}{Description 4}
\cventry{mm/yy}{Programme 3}{University 3}{Location 3}{}{
\begin{tabbing}
\hspace*{10mm} \= \kill
\> \textbf{Projects}\\
\> \textit{Project Title 1} \\
\> \textit{Project Title 2} \\
\end{tabbing}}
\begin{itemize}
\item \textbf{\textit{Name of University 2, Location 2 }}\\
Programme Read 2 \hspace\fill Month2 Year2.
\item \textbf{\textit{Name of University 1, Location 1 }}\\
Programme Read 1 \hspace\fill Month1 Year1.
\begin{tabbing}
\hspace*{10mm} \= \kill
\> \textbf{Projects}\\
\> \textit{Project Title 1} \\
\> \textit{Project Title 2} \\
\end{tabbing}
\end{itemize}
\end{document}
顺便提一句,我建议你不要使用全大写和下划线(单独使用或同时使用更糟),这不是中世纪。如果你想要大写字母,最好使用\textsc{}
。