我正在使用简历模板目前 resumeSubheading 条目的项目符号出现在第 1 和第 3 条目的中间某处。有点像这样:
我希望它们位于第一个条目之前(示例中 Google 之前)
我尝试用代码进行实验
\newcommand{\resumeSubheading}[4]{
\vspace{-1pt}\item
\begin{tabular*}{0.97\textwidth}{l@{\extracolsep{\fill}}r}
\textbf{#1} & #2 \\
\textit{\small#3} & \textit{\small #4} \\
\end{tabular*}\vspace{-5pt}
}
这里,之前将值改为 0.97\textwidth
不会有任何效果,除非改为 0.99 之后项目符号看起来会像这样:
似乎没有其他办法。有人能帮我解决这个问题吗?如何将项目符号直接放在公司名称前面?
\section{Experience}
\resumeSubHeadingListStart
\resumeSubheading
{Google}{Mountain View, CA}
{Software Engineer}{Oct 2016 - Present}
\resumeItemListStart
\resumeItem{Tensorflow}
{TensorFlow is an open source software library for numerical computation using data flow graphs; primarily used for training deep learning models.}
\resumeItem{Apache Beam}
{Apache Beam is a unified model for defining both batch and streaming data-parallel processing pipelines, as well as a set of language-specific SDKs for constructing pipelines and runners.}
\resumeItemListEnd
Overleaf 链接:<removed>
答案1
标记看起来很奇怪,但是
\item \begin{tabular*}{0.97\textwidth}[t]{l@{\extracolsep{\fill}}r}
将使第一行tabular*
与项目标签中的项目符号对齐。