我想在awesome-cv
模板中添加不可见的列,如何添加?
模板: https://github.com/posquit0/Awesome-CV
我想只在一个部分中添加此列,以便节省一些空间
技能
.....| .....| ........|
.....| .....| ........|
.....| .....| ........|
同样地。
答案1
例如,您可以使用环境description
来minipage
实现这一点。查看代码:
\cvsection{Skills}
\begin{minipage}[t]{.3\linewidth}
\raggedright
\begin{description}
\item[Programming] Python, C/C++, Scala, JAVA, Node.JS, OCaml, LaTeX
\end{description}
\end{minipage}%
\hfil
\begin{minipage}[t]{.3\linewidth}
\raggedright
\begin{description}
\item[Web] Django with Python, Express with Node.JS, HTML5, LESS
\end{description}
\end{minipage}%
\hfil
\begin{minipage}[t]{.3\linewidth}
\raggedright
\begin{description}
\item[Languages] Korean, English, Japanese, Chinese
\end{description}
\end{minipage}
其结果是形成了三个相互关联的小页面……
拥有完整的 MWE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Awesome Resume/CV
% XeLaTeX Template
% Version 1.1 (9/1/2016)
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% Original author:
% Claud D. Park ([email protected]) with modifications by
% Vel ([email protected])
%
% License:
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
%
% Important note:
% This template must be compiled with XeLaTeX, the below lines will ensure this
%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%----------------------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%----------------------------------------------------------------------------------------
\documentclass[11pt, a4paper]{awesome-cv} % A4 paper size by default, use 'letterpaper' for US letter
%\usepackage{multicol}
\geometry{left=2cm, top=1.5cm, right=2cm, bottom=2cm, footskip=.5cm} % Configure page margins with geometry
%\usepackage{pst-blur}
\usepackage{graphicx}
\fontdir[fonts/] % Specify the location of the included fonts
\usepackage[autostyle=true,german=quotes]{csquotes}
\usepackage{polyglossia}
\setdefaultlanguage[spelling=new]{german}
\usepackage{tikz}
\usetikzlibrary{arrows}
\usepackage{multicol}
\usepackage{parallel}
% Color for highlights
\colorlet{awesome}{awesome-skyblue} % Default colors include: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange, awesome-nephritis, awesome-concrete, awesome-darknight
\colorlet{emphasis}{black}
\colorlet{body}{black!80!white}
%\definecolor{awesome}{HTML}{CA63A8} % Uncomment if you would like to specify your own color
% Colors for text - uncomment and modify
%\definecolor{darktext}{HTML}{414141}
%\definecolor{text}{HTML}{414141}
%\definecolor{graytext}{HTML}{414141}
%\definecolor{lighttext}{HTML}{414141}
\renewcommand{\acvHeaderSocialSep}{\quad\textbar\quad} % If you would like to change the social information separator from a pipe (|) to something else
%----------------------------------------------------------------------------------------
% PERSONAL INFORMATION
% Comment any of the lines below if they are not required
%----------------------------------------------------------------------------------------
\name{James}{Bond}
\mobile{(+01) 234 56789}
\email{[email protected]}
\makecvfooter{\today}{James Bond~~~--~~~Curriculum Vitae}{\thepage}
%----------------------------------------------------------------------------------------
\begin{document}
\makecvheader % Print the header
%----------------------------------------------------------------------------------------
% CV/RESUME CONTENT
% Each section is imported separately, open each file in turn to modify content
%----------------------------------------------------------------------------------------
%----------------------------------------------------------------------------------------
% SECTION TITLE
%----------------------------------------------------------------------------------------
\cvsection{Education}
%----------------------------------------------------------------------------------------
% SECTION CONTENT
%----------------------------------------------------------------------------------------
\begin{cventries}
%------------------------------------------------
\cventry
{Something} % Degree
{Highschool} % Institution
{Springfield} % Location
{2025} % Date(s)
{ % Description(s) bullet points
\begin{cvitems}
\item {Test, Test, Test}
\end{cvitems}
}
\cventry
{Something} % Degree
{Highschool} % Institution
{Springfield} % Location
{2025} % Date(s)
{ % Description(s) bullet points
\begin{cvitems}
\item {Test, Test, Test}
\end{cvitems}
}
\cventry
{Something else} % Degree
{University} % Institution
{Springfield} % Location
{2025} % Date(s)
{ % Description(s) bullet points
\begin{cvitems}
\item {Test, Test, Test}
\item {Test, Test, Test}
\item {Test, Test, Test}
\end{cvitems}
}
\cventry
{Another one} % Degree
{College} % Institution
{Springfield} % Location
{2025} % Date(s)
{ % Description(s) bullet points
\begin{cvitems}
\item {Test, Test, Test}
\end{cvitems}
}
\cventry
{Something} % Degree
{Highschool} % Institution
{Springfield} % Location
{2025} % Date(s)
{ % Description(s) bullet points
\begin{cvitems}
\item {Test, Test, Test}
\end{cvitems}
}
%------------------------------------------------
\end{cventries}
%----------------------------------------------------------------------------------------
% SECTION TITLE
%----------------------------------------------------------------------------------------
\cvsection{Skills}
%----------------------------------------------------------------------------------------
% SECTION CONTENT
%----------------------------------------------------------------------------------------
\begin{cvskills}
%------------------------------------------------
\cvskill
{Programming} % Category
{Python, C/C++, Scala, JAVA, Node.JS, OCaml, LaTeX} % Skills
%------------------------------------------------
\cvskill
{Web} % Category
{Django with Python, Express with Node.JS, HTML5, LESS} % Skills
%------------------------------------------------
\cvskill
{Languages} % Category
{Korean, English, Japanese, Chinese} % Skills
%------------------------------------------------
\end{cvskills}
\cvsection{Skills}
\begin{minipage}[t]{.3\linewidth}
\raggedright
\begin{description}
\item[Programming] Python, C/C++, Scala, JAVA, Node.JS, OCaml, LaTeX
\end{description}
\end{minipage}%
\hfil
\begin{minipage}[t]{.3\linewidth}
\raggedright
\begin{description}
\item[Web] Django with Python, Express with Node.JS, HTML5, LESS
\end{description}
\end{minipage}%
\hfil
\begin{minipage}[t]{.3\linewidth}
\raggedright
\begin{description}
\item[Languages] Korean, English, Japanese, Chinese
\end{description}
\end{minipage}
%----------------------------------------------------------------------------------------
\end{document}
您将获得以下结果(首先查看原始技能,然后查看技能的新布局):