我正在制作一份很棒的简历(下载自这里)。我得到了@egreg 的关于如何将项目放入列的答案。但我想更改项目符号的外观。以下是他使用默认模板命令和 itemize 样式给出的答案:
\documentclass[]{awesome-cv}
\usepackage{multicol}
\newenvironment{cvitems*}[1][2]
{\setlength{\multicolsep}{0pt}%
\vspace{-\baselineskip}%
\begin{multicols}{#1}
\begin{cvitems}}
{\end{cvitems}%
\end{multicols}
\vspace{-\baselineskip}\vspace{2mm}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Personal Data
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Essentials
\name{Some}{Name}
\address{An Address, 3245}
\mobile{(+57) 45-45654-434}
%%% Social
\email{[email protected]}
\homepage{www.SomePage.com}
\github{Someone2}
\linkedin{Someone2}
%%% Optionals
\position{My Position}
\quote{``I am me.''}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Content
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Make a footer for CV with three arguments(<left>, <center>, <right>)
\makecvfooter
{\today}
{My Resume}
{\thepage}
\begin{document}
%%% Make a header for CV with personal data
\makecvheader
\cvsection{Experience}
\begin{cventries}
\cventry
{Manager xx } % Job title
{xxx} % Organization
{Swi} % Location
{2019} % Date(s)
{ % Description(s) of tasks/responsibilities
\begin{cvitems*}
\item item 1 with words describing it
\item item 2 with words describing it
\item item 3 with words describing it
\item item 4 with words describing it
\item item 5 with words describing it
\item item 6 with words describing it
\end{cvitems*}
}
\end{cventries}
\begin{cventries}
\cventry
{Manager xx } % Job title
{xxx} % Organization
{Swi} % Location
{2019} % Date(s)
{ % Description(s) of tasks/responsibilities
\begin{cvitems}
\item item 1 with words describing it
\item item 2 with words describing it
\item item 3 with words describing it
\end{cvitems}
}
\end{cventries}
\begin{cventries}
\cventry
{Manager xx } % Job title
{xxx} % Organization
{Swi} % Location
{2019} % Date(s)
{ % Description(s) of tasks/responsibilities
\begin{cvitems}
\item item 1 with words describing it
\item item 2 with words describing it
\item item 3 with words describing it
\end{cvitems}
}
\end{cventries}
\begin{cventries}
\cventry
{Manager xx } % Job title
{xxx} % Organization
{Swi} % Location
{2019} % Date(s)
{ % Description(s) of tasks/responsibilities
\begin{cvitems*}[4]
\item item 1
\item item 2
\item item 3
\item item 4
\item item 5
\item item 6
\item item 7
\item item 8
\item item 9
\item item 10
\item item 11
\end{cvitems*}
}
\end{cventries}
\end{document}
输出如下:
我怎样才能将物品的样式改为“球”或者其他形状?
答案1
这里有一种方法(代码中注释了用法):
我使用了@Fran 答案中的项目符号样式这里。
\documentclass[]{awesome-cv}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Personal Data
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Essentials
\name{Some}{Name}
\address{An Address, 3245}
\mobile{(+57) 45-45654-434}
%%% Social
\email{[email protected]}
\homepage{www.SomePage.com}
\github{Someone2}
\linkedin{Someone2}
%%% Optionals
\position{My Position}
\quote{``I am me.''}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Content
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Make a footer for CV with three arguments(<left>, <center>, <right>)
\makecvfooter
{\today}
{My Resume}
{\thepage}
%koleygr: Here is the code needed for out item-table
%From: Fran's answer https://tex.stackexchange.com/a/72814/120578
% tkiz ball item
\newcommand*\circled[2][\scriptsize]{\tikz[baseline=(char.base)]{
\node[circle,ball color=awesome-red, shade,
color=black,inner sep=1.2pt] (char) {#1 #2};}}
\usepackage{environ}
\usepackage{tikz}
% Creates a tabular that accepts \item command:
% #1 is the size like "\scriptsize or \normalsize [default] or \tiny etc
% #2 size of tabular like "c@{\extracolsep{\fill}}cc" or "p{3cm}@{\extracolsep{\fill}}p{3cm}"
% #3 integer larger than 0 gives numbered items else unnumbered
% #4 distance from the ball (of the item)
\newcounter{myitemscounter}
\NewEnviron{myitems}[4][\scriptsize]
{%
\setlength{\tabcolsep}{20pt}
\let\olditem\item%
\ifnum#3>0
\setcounter{myitemscounter}{0}%
\def\item{%
\stepcounter{myitemscounter}%
\circled[#1]{\themyitemscounter}\hspace{#4}%
}
\else
\def\item{%
\circled[#1]{\phantom{1}}\hspace{#4}%
}
\fi
\begin{tabular*}{\textwidth}{#2}%
\BODY
\end{tabular*}%
\let\item\olditem
}
\begin{document}
%%% Make a header for CV with personal data
\makecvheader
\cvsection{Experience}
\begin{cventries}
\cventry
{Manager xx } % Job title
{xxx} % Organization
{Swi} % Location
{2019} % Date(s)
{ % Description(s) of tasks/responsibilities
%\begin{cvitems}
%\item {item 1}
%\item {item2}
%\item {item 3}
%\item {item4}
%\end{cvitems}
\begin{myitems}[]{p{6.5cm} @{\extracolsep{2cm}} p{6.5cm}}{1}{4pt}
\item 2004--2014 Manager of a No-name company and lost my time with them&\item 2014 --2016 Manager of a Huge company that solved the equation $y=3\cdot x$ where $x=1$ \\[4pt]
\item 2016--2018 Unemployed because of the world's biggest Economical Crisis.&\item 2018 --(till die) Hope to not lose my time with your Company
\end{myitems}
}
\end{cventries}
\begin{cventries}
\cventry
{Manager xx } % Job title
{xxx} % Organization
{Swi} % Location
{2019} % Date(s)
{ % Description(s) of tasks/responsibilities
%\begin{cvitems}
%\item {item 1}
%\item {item2}
%\item {item 3}
%\item {item4}
%\end{cvitems}
\begin{myitems}[]{p{6.5cm} @{\extracolsep{2cm}} p{6.5cm}}{0}{4pt}
\item 2004--2014 Manager of a No-name company and lost my time with them&\item 2014 --2016 Manager of a Huge company that solved the equation $y=3\cdot x$ where $x=1$ \\[4pt]
\item 2016--2018 Unemployed because of the world's biggest Economical Crisis.&\item 2018 --(till die) Hope to not lose my time with your Company
\end{myitems}
}
\end{cventries}
\end{document}
输出: