想要调整 1 页 2 列 CV 设置吗?

想要调整 1 页 2 列 CV 设置吗?
\documentclass[a4paper]{article}
\usepackage{tabularx}
%\usepackage{doublespace}
%\setstretch{1.2}
\usepackage{ae}
\usepackage[T1]{fontenc}
\usepackage{CV}

\usepackage[colorlinks]{hyperref}
\hypersetup{linkcolor=blue,citecolor=blue,filecolor=black,urlcolor=blue}

\setlength{\textwidth}{5in}
\setlength{\textheight}{660pt}

\setlength{\oddsidemargin}{42pt}
\setlength{\topmargin}{-20pt}

\newcommand{\ingreen}[1]{{\color{blue}#1}}


\begin{document}
\twocolumn
\pagestyle{empty}
\begin{center}
%\huge{\textsc{Curriculum Vitae}}
%\vspace{0.5\baselineskip}

\huge{\textsc{Name}}
\end{center}
\vspace{0.25\baselineskip}



\section{Contact Information}
\begin{flushleft}

Email: \ingreen{[email protected]} \\
Skype: abc\\
Mobile: +00-000-1234567 \\
Phone: +00-00-1234567
\end{flushleft}

\section{Objective}
\begin{flushleft}
 To become a good researcher in my field.
\end{flushleft}


\section{Education}

\begin{CV}
\item[\ingreen{August 2007--August 2009}]
\item[Master(Biochemistry)]
\item[University Name]
\item[City, Country]
\item[Area: Biochemistry]
\item[\ingreen{August 2002--September 2006}]
\item[BS(Hons)]
\item[University Name]
\item[City, Country]
\item[Area: Biology]
\end{CV}
\section{Research Work}
\begin{flushleft} My Master degree thesis is on \emph{Research}.
\end{flushleft}

\section{Technical Expertise}
\noindent
\begin{itemize}
\item  MATLAB, Mathematica, C/C++, \LaTeX, \LaTeX Draw, Mayura Draw, MS Office
\end{itemize}

\section{Area of Interest}
\noindent

\section{Hobbies $\&$ Sports}
\noindent
\begin{itemize}
\item Studying Books, Cricket, Watching Sports Channels
\item Music, Movies, Photography
\end{itemize}


\section{References}





\end{document}
  1. 第一个难题是集中名称。
  2. 第二,使水平线均等化。

在此处输入图片描述

答案1

您只需要使用可选参数\twocolumn;您也可以将\columnsep和设置\columnseprule为所需的值。

在示例中,我删除了未使用的tabularx包(如果需要,请添加)以及过时的包ae。如果您没有 CM-Super 字体包,并且打印输出模糊,请添加\usepackage{lmodern}

\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage{CV}

\usepackage[colorlinks]{hyperref}
\hypersetup{linkcolor=blue,citecolor=blue,filecolor=black,urlcolor=blue}

\setlength{\textwidth}{5in}
\setlength{\textheight}{660pt}

\setlength{\oddsidemargin}{42pt}
\setlength{\topmargin}{-20pt}

\setlength{\columnseprule}{0.4pt}
\setlength{\columnsep}{1cm}

\newcommand{\ingreen}[1]{{\color{blue}#1}}

\pagestyle{empty}

\begin{document}
\twocolumn[%
  \begin{center}
  \huge\textsc{Curriculum Vitae}

  \textsc{Name}
  \end{center}
]



\section{Contact Information}
\begin{flushleft}

Email: \ingreen{[email protected]} \\
Skype: abc\\
Mobile: +00-000-1234567 \\
Phone: +00-00-1234567
\end{flushleft}

\section{Objective}
\begin{flushleft}
 To become a good researcher in my field.
\end{flushleft}


\section{Education}

\begin{CV}
\item[\ingreen{August 2007--August 2009}]
\item[Master(Biochemistry)]
\item[University Name]
\item[City, Country]
\item[Area: Biochemistry]
\item[\ingreen{August 2002--September 2006}]
\item[BS(Hons)]
\item[University Name]
\item[City, Country]
\item[Area: Biology]
\end{CV}
\section{Research Work}
\begin{flushleft} My Master degree thesis is on \emph{Research}.
\end{flushleft}

\section{Technical Expertise}
\noindent
\begin{itemize}
\item  MATLAB, Mathematica, C/C++, \LaTeX, \LaTeX Draw, Mayura Draw, MS Office
\end{itemize}

\section{Area of Interest}
\noindent

\section{Hobbies $\&$ Sports}
\noindent
\begin{itemize}
\item Studying Books, Cricket, Watching Sports Channels
\item Music, Movies, Photography
\end{itemize}


\section{References}

\end{document}

在此处输入图片描述

答案2

这是一种可能的解决方案,其中multicol使用包,而不是\twocolumn

在此处输入图片描述

代码

\documentclass[a4paper]{article}
\usepackage{tabularx,multicol}
%\usepackage{doublespace}
%\setstretch{1.2}
\usepackage{ae}
\usepackage[T1]{fontenc}
\usepackage{CV}

\usepackage[colorlinks]{hyperref}
\hypersetup{linkcolor=blue,citecolor=blue,filecolor=black,urlcolor=blue}

\setlength{\textwidth}{5in}
\setlength{\textheight}{660pt}

\setlength{\oddsidemargin}{42pt}
\setlength{\topmargin}{-20pt}

\newcommand{\ingreen}[1]{{\color{blue}#1}}


\begin{document}
\pagestyle{empty}
\begin{center}
%\huge{\textsc{Curriculum Vitae}}
%\vspace{0.5\baselineskip}
\huge{\textsc{Name}}
\end{center}
%\vspace{0.25\baselineskip}
\begin{multicols}{2}
\section{Contact Information}
\begin{flushleft}

Email: \ingreen{[email protected]} \\
Skype: abc\\
Mobile: +00-000-1234567 \\
Phone: +00-00-1234567
\end{flushleft}

\section{Objective}
\begin{flushleft}
 To become a good researcher in my field.
\end{flushleft}

\section{Education}

\begin{CV}
\item[\ingreen{August 2007--August 2009}]
\item[Master(Biochemistry)]
\item[University Name]
\item[City, Country]
\item[Area: Biochemistry]
\item[\ingreen{August 2002--September 2006}]
\item[BS(Hons)]
\item[University Name]
\item[City, Country]
\item[Area: Biology]
\end{CV}
\section{Research Work}
\begin{flushleft} My Master degree thesis is on \emph{Research}.
\end{flushleft}

\section{Technical Expertise}
\noindent
\begin{itemize}
\item  MATLAB, Mathematica, C/C++, \LaTeX, \LaTeX Draw, Mayura Draw, MS Office
\end{itemize}

\section{Area of Interest}
\noindent
\vfill
\columnbreak
\section{Hobbies $\&$ Sports}
\noindent
\begin{itemize}
\item Studying Books, Cricket, Watching Sports Channels
\item Music, Movies, Photography
\end{itemize}


\section{References}
\end{multicols}
\end{document}

相关内容