更改部分标题样式

更改部分标题样式

我正在将我的简历从 Word 移植到 latex。我想包括我的出版物清单,但我想将其分成两部分,我的论文和我的期刊文章,并加上适当的小标题。由于学术参考文献总是很难手动编写,因此我使用 BibTeX 来适当地跟踪它们。

我想要的效果如下:

当前的

目前的情况如下:

Latex 的版本

这是由以下代码生成的(使用http://www.latextemplates.com/template/medium-length-professional-cv来自网络):

\documentclass{resume} % Use the custom resume.cls style

\usepackage[left=0.75in,top=0.6in,right=0.75in,bottom=0.6in]{geometry} % Document margins

\name{Random Joe} % Your name
\address{Who lives nowhere, really} % Your address
\address{(555) 555 5121~$\cdot$~ email: [email protected]} % Your phone number and email

\begin{document}

\begin{rSection}{Education}

{\bf University, city} \hfill {\em August 2013} \\ 
PhD \& Engineering \\
 \smallskip \\

\end{rSection}

\begin{rSection}{Work Experience}

\begin{rSubsection}{Nonwhere}{August 2007 - August 2013}{Graduate Research Assistant}{Nowhere, FAR}
\item What do grad students do anyway?
\end{rSubsection}


\begin{rSubsection}{Nowhere}{Summer 2006}{Intern}{Someother place, AWAY}

\item Intern

\end{rSubsection}

%-----------------
\end{rSection}


\begin{rSection}{Skills}

\begin{rSubsection}{Computering}{}{}{}

\item Been on the internets. 
\item Note much to see there

\end{rSubsection}



\end{rSection}


\begin{rSection}{Other}

Native fluency in English. Somewhat


\end{rSection}

\begin{rSection}{CONFERENCE PRESENTATIONS}

\begin{rSubsection}{GRAD STUDENTS Annual Meeting }{2012}{Hell-sinsky}
\item Are grad students really useful for research? 
\end{rSubsection}


\end{rSection}

\pagebreak[3]

\begin{rSection}{AWARDS, HONORS}

\item Primary author (\cite{Lee2009} below) of paper selected as the cover of the issue.
\nocite{Lee2012}

\end{rSection}

\pagebreak[3]

\begin{rSection}{Publications}

\begin{rSubsection}{Thesis}{}{}
\item PhD Thesis (2013) ``Grad students: Victims or Whimps?'' Studets-r-us, GA
\end{rSubsection}

\end{rSection}

\bibliographystyle{plain}
\renewcommand{\refname}{Refereed Journal Publications}
\bibliography{Resume}

\end{document}

答案1

您可以在序言中添加以下几行:

\renewenvironment{rSection}[1]{ % 1 input argument - section name
  \nameskip\nameskip
  \MakeUppercase{\bfseries #1} % Section title
  \sectionlineskip
  \hrule % Horizontal line
  \nameskip
  \begin{list}{}{ % List for each individual item in the section
    \setlength{\leftmargin}{0em} % Margin within the section
  }
  \item[]
}{
  \end{list}
}

您将获得以下结果:

在此处输入图片描述

相关内容