Como ter os mesmos recuos para marcadores individuais

Como ter os mesmos recuos para marcadores individuais

Portanto, estou escrevendo meu currículo onde cada descrição de um trabalho/experiência é seu próprio marcador. Portanto, há alguns marcadores que estou criando usando a \bulletpalavra-chave. Meu problema é que os marcadores não estão alinhados, ou seja, não têm o mesmo recuo. Eu gostaria de ter três espaços (usando \* \* \*antes de cada um \bullet), mas no momento eles não estão alinhados um com o outro.

Há algo especial que devo fazer para que cada marcador tenha o mesmo recuo? Eles não são listas, pois cada marcador é independente, então minha solução preferida seria aquela em que eu insiro alguma palavra-chave antes do marcador para que tudo fique padronizado.

\documentclass[12pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{marvosym}
\usepackage{tikz}
\usepackage{blindtext}
\usepackage{apacite}
\usepackage{tabto}
\usepackage{bibentry}
\usepackage{enumitem}
\usepackage{xcolor}
\usepackage{bibentry}
\usepackage{ifsym}
\usepackage{wasysym}
\usetikzlibrary{fadings}
\newcommand\heading[3]%
{\begin{tabular}[b]{@{}l@{}}
\sffamily\bfseries\LARGE#1\\
\small\Letter\ \texttt{#2} \\
\small\phone\ \texttt{Phone} \\
\small \textifsymbol{18}\ 
\texttt{Address}
\end{tabular}%
}  
\newcommand\secline
{\tikz\fill[green,path fading=east] 
(0,0) rectangle (\linewidth,2pt);}
\renewcommand\section[1]%
{\par\bigskip
{\sffamily\bfseries\large#1}\\[-1.5ex]
\secline
}
\newcommand\cventry[3]%
{\makebox[19em][l]{#1}\hspace{1em}%
\parbox[t]{\dimexpr\linewidth-6em}%
{{#2}\quad#3}%
}
\parindent0pt
\begin{document}
\heading{Name}{email}{example-image-1x1.png} 
\section{Employment History}
\textbf{Job 1}, Employer 1 \\
\textit{City} \textbar \* \* 
\textit{Summer 2017} \\
\* \* \* $\bullet$ This is a job description for job 1. It was quite fun at times yet also quite boring at times. In short, this job was a job of contrast.. \\
\textbf{Job 2}, Employer 2 \\
\textit{City} \textbar \* \* 
\textit{Summers 2014|2016} \\
\* \* \* $\bullet$ In contrast to job 1, job 2 contrasted even more than job 1. While the highs were high, the lows were very low.
\section{Skills}

\* \* \* $\bullet$ Computer programming languages C, Java, Javascript, OCAML, and Python \\
\* \* \* $\bullet$ Statistical softwares R, SPSS, and STATA \\
\* \* \* $\bullet$ Mapping softwares ArcMap and ArcGIS Pro  \\
\* \* \* $\bullet$ Google Maps API, Mapbox API, and Openstreetmap API \\
\* \* \* $\bullet$ Microsoft Office Suite, Keynote, and LaTeX \\
\* \* \* $\bullet$ Professional and academic writing \\
\* \* \* $\bullet$ Customer service and sales 
\end{document}

No código de exemplo que tenho, esse aborrecimento é visível com os marcadores das descrições do trabalho 1 e do trabalho 2. Especificamente, o marcador da descrição do trabalho 2 está ligeiramente à esquerda do trabalho 1. Eu também tentei usar \textbullet\, mas também não funcionou para mim.

Responder1

Aqui está uma solução com parâmetros de itemização definidos com enumitem:

\documentclass[12pt]{article}
\usepackage[margin=1in, showframe]{geometry}
\usepackage{marvosym}
\usepackage{tikz}
\usepackage{blindtext}
\usepackage{apacite}
\usepackage{tabto}
\usepackage{bibentry}
\usepackage{enumitem}
\setlist[itemize]{wide = 1em, nosep}
\usepackage{xcolor}
\usepackage{bibentry}
\usepackage{ifsym}
\usepackage{wasysym}
\usetikzlibrary{fadings}
\newcommand\heading[3]%
{\begin{tabular}[b]{@{}l@{}}
\sffamily\bfseries\LARGE#1\\
\small\Letter\ \texttt{#2} \\
\small\phone\ \texttt{Phone} \\
\small \textifsymbol{18}\
\texttt{Address}
\end{tabular}%
}
\newcommand\secline
{\tikz\fill[green,path fading=east]
(0,0) rectangle (\linewidth,2pt);}
\renewcommand\section[1]%
{\par\bigskip
{\sffamily\bfseries\large#1}\\[-1.5ex]
\secline
}
\newcommand\cventry[3]%
{\makebox[19em][l]{#1}\hspace{1em}%
\parbox[t]{\dimexpr\linewidth-6em}%
{{#2}\quad#3}%
}
\parindent0pt
\begin{document}

\heading{Name}{email}{example-image-1x1.png}
\section{Employment History}
\textbf{Job 1}, Employer 1 \\
\textit{City} \textbar \* \*
\textit{Summer 2017}% \\
%\* \* \* $\bullet$ This is a job description for job 1. It was quite fun at times yet also quite boring at times. In short, this job was a job of contrast.. \\
\begin{itemize}
\item This is a job description for job 1. It was quite fun at times yet also quite boring at times. In short, this job was a job of contrast.
\end{itemize}
\textbf{Job 2}, Employer 2 \\
\textit{City} \textbar \* \*
\textit{Summers 2014|2016} %\\
%\* \* \* $\bullet$ In contrast to job 1, job 2 contrasted even more than job 1. While the highs were high, the lows were very low.
\begin{itemize}
       \item In contrast to job 1, job 2 contrasted even more than job 1. While the highs were high, the lows were very low.
\end{itemize}
\section{Skills}
\begin{itemize}
       \item Computer programming languages C, Java, Javascript, OCAML, and Python
       \item Statistical softwares R, SPSS, and STATA
       \item Mapping softwares ArcMap and ArcGIS Pro
       \item Google Maps API, Mapbox API, and Openstreetmap API
       \item Microsoft Office Suite, Keynote, and LaTeX
       \item Professional and academic writing
       \item Customer service and sales
\end{itemize}

\end{document} 

insira a descrição da imagem aqui

informação relacionada