我想在我的简历中使用一些技能栏。
但由于我的布局是固定的,所以我需要调整条目之间的空间。
以下是 MWE:
\documentclass{report}
\usepackage[T1]{fontenc}
\usepackage{tikz}
\usepackage{xcolor}
\definecolor{white}{RGB}{255,255,255}
\definecolor{gray}{HTML}{4D4D4D}
\definecolor{maingray}{HTML}{B9B9B9}
\newcommand\skills[1]{
\begin{tikzpicture}
\foreach [count=\i] \x/\y in {#1}{
\draw[fill=maingray,maingray] (0,\i) rectangle (6,\i+0.4);
\draw[fill=white,gray](0,\i) rectangle (\y,\i+0.4);
\node[above right] at (0,\i+0.4) {\x};
}
\end{tikzpicture}
}
\begin{document}
\skills{{a/1},{b/2}}
\end{document}
我如何更改代码来定义/减少两个条目之间的空间?
答案1
您需要减小尺寸,例如\i
将其乘以0.8
:
\documentclass{report}
\usepackage[T1]{fontenc}
\usepackage{tikz}
\usepackage{xcolor}
\definecolor{white}{RGB}{255,255,255}
\definecolor{gray}{HTML}{4D4D4D}
\definecolor{maingray}{HTML}{B9B9B9}
\newcommand\skills[1]{
\begin{tikzpicture}
\foreach [count=\j, evaluate={\i=\j*0.8}] \x/\y in {#1}{
\draw[fill=maingray,maingray] (0,\i) rectangle +(6,0.4); % <---
\draw[fill=white,gray](0,\i) rectangle +(\y,0.4);% <---
\node[above right] at (0,\i+0.4) {\x};% <---
}
\end{tikzpicture}
}
\begin{document}
\skills{{a/1},{b/2}}
\end{document}