如何修复简历中的标题

如何修复简历中的标题

这是我想要做的简历的开头,但是我对标题有一些问题。这是我的最小源代码:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{scrpage2}
\usepackage[demo]{graphicx}
\usepackage{xcolor}
\usepackage{titlesec} % Used to customize the \section command
\usepackage[left=2cm,top=1.5cm, right=2cm]{geometry}
\usepackage{hyperref}
\definecolor{linkcolour}{rgb}{0,0.2,0.6} % Link color
\hypersetup{colorlinks,breaklinks,urlcolor=linkcolour,linkcolor=linkcolour}  
\pagestyle{scrheadings}
\ohead{ 

\begin{flushleft}
 \textbf{blabla blabla}
 avenue of blabla, 30020 \\
 new blabla, blabla \\
 +00 00 00 00 00 \\
 [email protected] \\
\end{flushleft}  
\vfill
\begin{flushright}
  \includegraphics[width=3.5cm, height=4cm]{blabla}
 \end{flushright}

\centering{\textsc{\huge BLABLA BLABLA\\ 
   \Large blabla blabla blabla  \\
   at blalblabla \\}}
\begin{flushleft}
  \section*{Formation}
  \vspace{-0.5cm}
  \titlerule
  \vspace{0.5cm}
  \begin{tabular}{r|p{13cm}}
    2011-Aujourd'hui & -blablablabla  \\
    & \footnotesize{ school of blablablablabala}\\
    Été 2013 & again blablablaba \\ 
    2009-2011 & and again blabalblablal  \\
    2009 & -and again again blablablalba  \\ 
  \end{tabular}
\end{flushleft}
 }


 \begin{document}
 \null
 \end{document}

并且我想知道如何在不使用 \hspace 和 vspace 的情况下修复标题以使其对齐,并且我想知道如何将章节放在文档中而不是 ohead 中,并且我想知道如何在不使用 \vspace 的情况下像同一个例子一样统治章节,我希望它自动实现,非常感谢您的帮助,我真的很感激。

答案1

也许这会给你一些启发。正如我在评论中所建议的,我几乎把所有内容都放在文档的主要部分,而不是放在标题部分。

\documentclass[12pt, oneside]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[left=2cm,top=1.5cm, right=2cm]{geometry}
\parindent 0pt            % <-- don't indent paragraphs?

\usepackage[demo]{graphicx}
\usepackage{scrpage2}
\usepackage{titlesec}
\usepackage{wrapfig}
\usepackage{xcolor}
\usepackage{hyperref}
\definecolor{linkcolour}{rgb}{0,0.2,0.6} % Link color
\hypersetup{colorlinks,breaklinks,urlcolor=linkcolour,linkcolor=linkcolour}

% Headers / Footers
\pagestyle{scrheadings}
\ohead{My Name, CV}
\cfoot{\thepage}

% Sectional Divisions
\setcounter{secnumdepth}{0}% <-- don't number sections, etc.
\titlespacing*{\section}{0pt}{2\baselineskip}{\baselineskip}
\titleformat{\section}[block]
{\normalfont\sffamily}
{\thesection}{.5em}{\bfseries}[\titlerule]

\begin{document}

\begin{wrapfigure}[5]{r}{5cm}
  \includegraphics[width=3.5cm, height=4cm]{blabla}
\end{wrapfigure}
\textbf{blabla blabla}\\
avenue of blabla, 30020 \\
new blabla, blabla \\
+00 00 00 00 00 \\
[email protected]


\vspace{5\baselineskip}% <-- due to large 'demo' image
\section{Formation}

\begin{tabular}{@{} r | p{13cm}}
  2011-Aujourd'hui & -blablablabla  \\
  & {\footnotesize School of blablablablabala}\\
  Été 2013 & again blablablaba \\
  2009-2011 & and again blabalblablal  \\
  2009 & -and again again blablablalba  \\
\end{tabular}


\section{Etc.}

Et une autre chose\ldots

\end{document}

相关内容