代码:

代码:

我正在用软件包整理我的简历moderncv,它有 1.05 页,这很烦人。我已经缩短了所有页边距,但我意识到最后两部分(语言、个人兴趣)几乎浪费了所有空间。

我怎样才能将最后两个小节放在两列中,并将它们彼此相邻?

我已经尝试过minipage一些其他的方法,但似乎moderncv没有得到应有的利用......

答案1

您可以\cvlistdoubleitem{Reading}{Athletics}将阅读放在一栏,将体育放在另一栏。语言最好不要动,因为在我看来,目前的格式更具描述性。

代码:

\documentclass[11pt,a4paper,sans]{moderncv} % Font sizes: 10, 11, or 12; paper sizes: a4paper, letterpaper, a5paper, legalpaper, executivepaper or landscape; font families: sans or roman

\moderncvstyle{classic} % CV theme - options include: 'casual' (default), 'classic', 'oldstyle' and 'banking'
\moderncvcolor{orange} % CV color - options include: 'blue' (default), 'orange', 'green', 'red', 'purple', 'grey' and 'black'
\usepackage{csquotes}
\usepackage[margin=.9in,scale=0.75]{geometry} % Reduce document margins-- ,scale=0.75
\setlength{\hintscolumnwidth}{3cm} % Uncomment to change the width of the dates column
\setlength{\makecvtitlenamewidth}{10cm} % For the 'classic' style, uncomment to adjust the width of the space allocated to your name


%----------------------------------------------------------------------------------------
%   NAME AND CONTACT INFORMATION SECTION
%----------------------------------------------------------------------------------------

\firstname{Harish} % Your first name
\familyname{Kumar} % Your last name

% All information in this block is optional, comment out any lines you don't need
\title{Curriculum Vitae}


%----------------------------------------------------------------------------------------

\begin{document}


%----------------------------------------------------------------------------------------
%   LANGUAGES SECTION
%----------------------------------------------------------------------------------------

\section{Languages}

\cvitemwithcomment{Tulu}{Mother tongue}{}
\cvitemwithcomment{Kannada}{Advanced}{Read, Write and Conversationally fluent}
\cvitemwithcomment{English}{Advanced}{Read, Write and Conversationally fluent}
\cvitemwithcomment{Hindi}{Advanced}{Read, Write and Conversationally fluent}
\cvitemwithcomment{Sanskrit}{Advanced}{Read, Write and Conversationally fluent}
\cvitemwithcomment{Konkani}{Basic}{Conversationally fluent}

%----------------------------------------------------------------------------------------
%   INTERESTS SECTION
%----------------------------------------------------------------------------------------

\section{Interests}

\renewcommand{\listitemsymbol}{-~} % Changes the symbol used for lists

\cvlistdoubleitem{\href{http://tex.stackexchange.com/users/11232/harish-kumar}{TeX.SX}}{Chess}
\cvlistdoubleitem{Reading}{Athletics}
\cvlistdoubleitem{Yoga}{Pranayama}
\cvlistdoubleitem{Meditation}{Eating}
\cvlistitem{Not sleeping}  %% This will give only one column
%----------------------------------------------------------------------------------------

\end{document}

在此处输入图片描述

相关内容