简历的格式化技巧部分

问题描述 投票:0回答:0

我是乳胶新手,正在使用模板,但不确定如何添加技能部分。我希望它看起来像这样。

enter image description here

我目前的简历看起来像这样,他们现在只是占位符。我也希望间距更接近第一个屏幕截图。 enter image description here

这里是技能部分的代码:

  \cventry
    {} 
    {}
    {}
    {}
    {
    \begin{cvitems}
     \item[] Languages 
     \item[] Frameworks 
     \item[] Tools 
      \end{cvitems}
    }

这是主要的代码:

%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
% Awesome CV LaTeX Template
%
% This template has been downloaded from:
% https://github.com/posquit0/Awesome-CV
%
% Author:
% Claud D. Park <[email protected]>
% http://www.posquit0.com
%
% Template license:
% CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/)
%


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%     Configuration
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Themes: Awesome-CV
\documentclass[11pt, a4paper]{awesome-cv}

%%% Override a directory location for fonts(default: 'fonts/')
\fontdir[fonts/]

%%% Configure a directory location for sections
\newcommand*{\sectiondir}{resume/}

%%% Override color
% Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange
%                 awesome-nephritis, awesome-concrete, awesome-darknight
%% Color for highlight
% Define your custom color if you don't like awesome colors
\colorlet{awesome}{awesome-skyblue}
%\definecolor{awesome}{HTML}{CA63A8}
%% Colors for text
%\definecolor{darktext}{HTML}{414141}
%\definecolor{text}{HTML}{414141}
%\definecolor{graytext}{HTML}{414141}
%\definecolor{lighttext}{HTML}{414141}

%%% Override a separator for social informations in header(default: ' | ')
%\headersocialsep[\quad\textbar\quad]


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%     3rd party packages
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Needed to divide into several files
\usepackage{import}


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%     Personal Data
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Essentials

\name{John}{Smith}
\mobile{123122345} 
%%% Social 
\github{name}
\linkedin{Name}
\email{[email protected]}
\homepage{xxx.com}
%%% Optionals
%\position{{\enskip\cdotp\enskip}??????}
%\quote{``Make the change that you want to see in the world."}


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%     Content
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Make a footer for CV with three arguments(<left>, <center>, <right>)


\begin{document}
%%% Make a header for CV with personal data
\makecvheader

%%% Import contents
\import{\sectiondir}{skills.tex}
\import{\sectiondir}{experience.tex}
\import{\sectiondir}{extracurricular.tex}
\import{\sectiondir}{education.tex}
%\import{\sectiondir}{english.tex}
%\import{\sectiondir}{presentation.tex}
%\import{\sectiondir}{committees.tex}

\end{document}

我不太确定要改变或做什么。我尝试了其他代码,但它给了我一个错误并且无法编译。它与整个简历的构建方式有关,因此我将不胜感激。

我从另一个模板尝试了这段代码,但出现错误

\section{Skills}
\begin{tabularx}{\linewidth}{@{}l X@{}}
\bf Languages &  \normalsize{Python, Java, C, JavaScript, SQL, LaTex}\\
\bf Frameworks/Libraries & \normalsize{ React, Django, Node.js, Flask}\\ 
\bf Tools/Software &  \normalsize{ Git, MySQL, Github, Figma, Eclipse, Jira, Visual Studio, Linux, AWS  }\\  

\end{tabularx}
latex pdflatex
© www.soinside.com 2019 - 2024. All rights reserved.