双栏简历中的小页面位于中间,而不是左侧

双栏简历中的小页面位于中间,而不是左侧

我曾经minipage制作过两列简历。左列出现在页面中央而不是左侧,而右列从左列下方开始并延续到下一页。给出了代码和生成的文档。请帮忙

\documentclass{article}

\usepackage[hmargin=1.25cm, vmargin=0.7cm]{geometry}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage{titlesec}
\usepackage{ragged2e}
\usepackage[absolute]{textpos}
\usepackage[UKenglish]{babel}
\usepackage[UKenglish]{isodate}
\usepackage{fontspec,xltxtra,xunicode}
\usepackage{hyperref}
%\usepackage[utf8]{inputenc}
\usepackage{color,soul}
\usepackage{tabularx}

\definecolor{headings}{HTML}{E74C3C}
\definecolor{gray}{HTML}{808B96} 
\definecolor{sepline}{HTML}{E74C3C}
\definecolor{main}{HTML}{17202A}
\setmainfont[Path = fonts/lato/]{Lato-Reg.ttf}

%horizontal line seaparator
\newlength{\seplinewidth}
\newlength{\seplinesep}
\setlength{\seplinewidth}{0.5mm}
\setlength{\seplinesep}{2mm}
\newcommand*{\sepline}{%
  \par
  \vspace{\dimexpr\seplinesep+.5\parskip}%
  \cleaders\vbox{%
    \begingroup % because of color
      \color{sepline}%
      \hrule width\linewidth height\seplinewidth
    \endgroup
  }\vskip\seplinewidth
  \vspace{\dimexpr\seplinesep-.5\parskip}%
}

%underline
\setul{0.5ex}{0.2ex}
\setulcolor{sepline}

\setlength{\textfloatsep}{0.1cm}
\addtolength{\parskip}{-0.5mm}

%title formats
\newcommand{\sectiontitle}[1]{{\color{headings} \fontspec[Path = fonts/lato/]{Lato-Bol.ttf} \Large \ul{#1}}}
\newcommand{\mainline}[1]{{\color{main} \fontspec[Path = fonts/lato/]{Lato-Bol.ttf}#1}}
\newcommand{\institute}[1]{{\color{main} #1}}
\newcommand{\gpa}[3]{\color{gray} #1 : #2 | #3}
\newcommand{\guiduration}[2]{{
\color{main}  
\begin{tabularx}{0.6\textwidth}{X r}
(#1)  & [#2]
\end{tabularx}
}}

\newenvironment{tightemize}{\vspace{-\topsep}\begin{itemize}\itemsep1pt \parskip0pt \parsep0pt}{\end{itemize}\vspace{-\topsep}}

\begin{document}

\pagestyle{empty}
\font\fb=''[cmr10]''
\setlength{\titlewidth}{454pt}

\centering{ 
{\fontspec[Path = fonts/lato/]{Lato-Bol.ttf} \Huge {\color{headings} Sumanth } \color{main}Umesh} \\
\color{gray}
Pre-Final Year B.Tech, Electrical Engineering\\
Indian Institute of Technology Jodhpur\\
[email protected]|+91-9632878570
}
\sepline
\vspace{-\topsep}

\begin{minipage}[t]{0.33\linewidth}

\raggedright

%Education

\sectiontitle{Education}\\[2mm]
\mainline{B.Tech in Electrical Engineering}\\
\institute{Indian Institute of Technology, Jodhpur}\\
\gpa{GPA}{9.33/10.0}{Expected 2020}\\[2mm]

\mainline{Higher Secondary (KSEEB)}\\
\institute{VVS GJ PU College, Mysore}\\
\gpa{Percentage}{96.3\%}{2014-15}\\[2mm]

\mainline{Secondary (CBSE)}\\
\institute{Atomic Engery Central School, Mysore}\\
\gpa{GPA}{10.0/10.0}{2012-13}\newline\\

%Technical Skills

\sectiontitle{Technical Skills}\\[2mm]
\mainline{Programming Language}\\
C++ \textbullet{} MATLAB\\[0.5mm]
\mainline{Hardware Description Language}\\
Verilog\\[0.5mm]
\mainline{Simulation Software}\\
Simulink \textbullet{} SPICE\\[0.5mm]
\mainline{Micrcontroller Programming}\\
PIC \textbullet{} Arduino \textbullet{} Embedded C\newline\\

%Coursework

\sectiontitle{Coursework}\\[2mm]
Computer Architecture\\
Microprocessors and Microcontrollers \\
Digital Logic and Design \\
Physics of Semiconductor Devices \\
Analog Electronics \\
Communication Systems \\
Signals and Systems \\
Electromagnetic Theory \\
Circuit Theory \\
Probability, Statistics and Random Processes \\
Complex Analysis and Differential Equation \\
Linear Algerbra and Calculus\\

\end{minipage}%

\hfill

\begin{minipage}[t]{0.6\textwidth}

\sectiontitle{Projects}\\[2mm]
\mainline{Automated Farm Security System}\\
\guiduration{Self-Project}{Sep 2017 - Mar 2018}


\end{minipage}

\end{document}

在此处输入图片描述`

相关内容