[Tex/LaTex] Getting rid of bullet point and indentation in itemize

formattingindentationitemize

I'm writing my resume in LaTeX and am using itemize to list my employment history. Example:

\begin{itemize*}

\item
\headerrow{\textbf{Google}}{\textbf{Cambridge, MA}}
\headerrow{\emph{Software Engineering Intern}}{\emph{Summer 2015}}
\begin{itemize*}
\item Blah blah blah
\item Blah blah blah
\end{itemize*}

\end{itemize*}

is one entry (obviously without the blah blah blah). Note that headerrow is a custom environment that I've created with the following definition:

\newcommand{\headerrow}[2]
{\begin{tabular*}{\linewidth}{l@{\extracolsep{\fill}}r}
    #1 &
    #2 \\
\end{tabular*}}

This produces the following result:

enter image description here

How could I get rid of the bullet point (and associated indentation) with the item "Google"? I've looked around and seen a few people asking how to get rid of just the bullet point, but I would also like to get rid of the indentation, so that the word "Google" is flush (or nearly flush) with the word "Experience".

Any way to do this?

Best Answer

I'm not sure you want to use itemize; however, here's a possibility.

\documentclass{article}
\usepackage{enumitem}

\usepackage{lipsum} % just for the example

\newenvironment{outeritemize}
 {\begin{itemize}[label={},leftmargin=*]}
 {\end{itemize}}

\newcommand{\headerrow}[2]{%
  \hspace*{-\labelsep}%
  \begin{tabular*}{\dimexpr\linewidth+\labelsep}{@{\extracolsep{\fill}}lr@{}}
    #1 &
    #2 \\
  \end{tabular*}%
}

\begin{document}

\lipsum[2] % to show the margins

\section*{Experience}

\begin{outeritemize}

\item
\headerrow{\textbf{Google}}{\textbf{Cambridge, MA}}
\headerrow{\emph{Software Engineering Intern}}{\emph{Summer 2015}}
\begin{itemize}
\item Blah blah blah
\item Blah blah blah
\end{itemize}

\end{outeritemize}

\end{document}

enter image description here