I have a table I am using for some headings. I would like the first entry in the table to not be indented, while being able to maintain the space between the first and seconds table items.
The latex code for my document:
\documentclass[letterpaper,11pt]{article}
\usepackage[empty]{fullpage}
\setlength{\parskip}{\baselineskip}%
\setlength{\parindent}{0pt}%
\usepackage[
top = 0.608cm,
bottom = 0.664cm,
left = 1.20cm,
right = 1.10cm]{geometry}
\begin{document}
\begin{tabular}{p{15cm} p{4cm}}
\textbf{Company name} - position & 01/0001 - 12/2999
\end{tabular}\\
Just some random filler text
\end{document}
I found this answer, which works but I have not been able to make it work while maintaining the spacing as I have it currently.
Is there a way?


\noindent\textbf{Company name} - position\hfill01/0001 - 12/2999\\would do the job, and be more semantic as well (and use\makeboxor\parboxif you truly need the widths). – Teepeemm Dec 17 '19 at 20:51\setlength{\tabcolsep}{0pt}%preferably in a group or environment. – John Kormylo Dec 17 '19 at 21:33<table>tags is bad in html if you're only doing it for layout purposes. A table should be for data in a tabular format, otherwise you're mixing styling and content. (There's also a house of cards phenomena - the more commands you add in to try to make something work, the more likely something will go wrong.) – Teepeemm Dec 19 '19 at 22:10