I have some LaTeX code that uses the \resizebox command to make some hipster text, but the compiled letters are not completely flush to each side. There is a slight space on each side of the line as the font size changes, as shown in the screenshot.
I have tried to adjust this using the titlesec package but I'm a bit lost, as to how I would change this.
Has anyone got any ideas?
Here's my code too Edit: Current Code
\documentclass[a4paper]{article}
\usepackage{graphicx,showframe}
\setlength{\parindent}{0mm}
\setlength{\parskip}{1mm}
\begin{document}
\resizebox{1\hsize}{!}{LINE ONE OF TEXT}
\resizebox{1\hsize}{!}{LINE 2 IS A BIT SMALLER}
\resizebox{1\hsize}{!}{LINE THREE IS REALLY SMALL}
\resizebox{1\hsize}{!}{THIS LINE IS IN ITALLICS}
\resizebox{1\hsize}{!}{A LINE!}
\resizebox{1\hsize}{!}{I CAN JUST KEEP GOING}
\resizebox{1\hsize}{!}{AND GOING AND}
\resizebox{1\hsize}{!}{GOING}
\end{document}


\partyou should set\parindentto zero and\parafter each box. – egreg Oct 09 '14 at 23:34\parskip, but it's just a suggestion. – Werner Oct 09 '14 at 23:44pdfcropand include it in your document; (2) Useadjustbox's features to trim components into a tight box, technically stretching them out further. – Werner Oct 10 '14 at 05:36