答案1
因此,您要更改的两个元素需要在宏中更改\languageknowledge
。如您所见,我\LARGE%
在其中添加了一个,但理论上这可以是项目符号的任何字体大小。下面您可以看到\hspace{1em}%
哪个是项目符号间距。
这样子弹就会更大,间距也更宽:
\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{banking}
\moderncvcolor{blue}
\usepackage[utf8]{inputenc}
\usepackage[scale=0.75]{geometry}
\usepackage{import}
% personal data
\name{First Name}{Last Name}
%\title{Computer Science} % optional, remove / comment the line if not wanted
\address{City}{Country}
\phone[mobile]{+5555555555555}
\email{[email protected]}
% setting the colours according to \moderncvcolor
\colorlet{languagecolor}{color1}
\colorlet{nolanguagecolor}{color2}
\newcount\languagecount
\newcommand\languageknowledge[2]
{%
% if you change the 4cm you can change the distance, the 4cm is the space
% reserved for the language's name, immediately after it the dots are
% printed.
\makebox[4cm][l]{\textbf{#1}}%
%\hfill % if you want the dots to be at the right margin
{\LARGE%
\languagecount=0
\loop\ifnum\languagecount<#2
\advance\languagecount1
\textcolor{languagecolor}{$\bullet$}%
\hspace{1em}%
\repeat
\loop\ifnum\languagecount<5
\advance\languagecount1
\textcolor{nolanguagecolor}{$\bullet$}%
\hspace{1em}%
\repeat}
}
\begin{document}
\makecvtitle
\small{Undergraduate UBC student completing a physics major with a biology minor. Passionate about science, philosophy and engineering with strong interpersonal skills and autodidactic tendencies.}
\section{Achievements}
\section{Education}
\vspace{2pt}
\section{Technical and Personal skills}
\section{Languages}
\vspace{6pt}
\begin{itemize}
\item \languageknowledge{Arabic}{5} %Five out of five
%\vspace{6pt}
\item \languageknowledge{English}{4} %Four out of five
\end{itemize}
\section{References}
\vspace{6pt}
\begin{itemize}
\item{One }
\vspace{6pt}
\item{Two}
\end{itemize}
\nocite{*}
\bibliographystyle{plain}
\bibliography{publications}
\end{document}