I will have to write my master thesis soon, so now I'm learning tex using Overleaf. I started with making resume, which I constantly have issues with indentation. I came across a lot of suggestion and tried them, but my indentation still looks wrong.
As you can see from the picture, the last item in my minipage always have different indent, eventhouh I have set the indent as \noindent. Here's my code. I've been struggling like for 2-3 days. I'd appreciated advice & suggestion. [updated my code]
\documentclass[a4paper]{article}
\usepackage{fontspec}
\usepackage{titling}
\usepackage[margin=.1in]{geometry}
\usepackage{titlesec}
\usepackage{enumitem}
\setlist{noitemsep,topsep =0pt,parsep =0pt,partopsep =0pt,leftmargin =*}
\titleformat{\section}
{\titlerule\addvspace{5pt}\normalfont\bfseries}
{}
{0cm}
{}[\titlerule]
\titleformat{\subsection}
{\footnotesize\bfseries}
{}
{0cm}
{}
\titlespacing{\subsection}
{0cm}
{.5cm}
{0cm}
\newcommand{\ul}{University of Landscape}
\newcommand{\uoa}{University of Architecture}
\newcommand{\entry}[4]{
\begin{minipage}[t]{.15 \textwidth}
\small\textsc{#1}
\end{minipage}
\begin{minipage}[t]{.80\textwidth}
\bfseries\footnotesize #2
\textit{\hspace{-.12cm}\footnotesize }#3
{\normalfont #4}\end{minipage}
}
\begin{document}
\begin{minipage}[t]{0.7\textwidth}
\section{Education}
\entry{2010 - 2013}{\ul}{\emph { Thesis : City Landscape Visualization using Augmented Reality}}{\begin{itemize} \item Diploma 3 in Architecture Engineering
\item GPA 3.63 (Cum laude Honor)
\end{itemize}}{}
\entry{2014- 2016} {\uoa}{\emph{ Thesis : City Landscape Design using Probability Method}}{\begin{itemize} \item Bachelor in Architecture Design .\item GPA 3.53 \end{itemize}}{}
\entry{2017 - Now}{Unievrsity of College}{\emph{ Thesis : Improving Architecture Accuracy \\}} {Master candidate in Architecture Design }
\section{Seminars}
\entry{2010}{Guide Hand-Design for Beginner}{}{\ul}
\entry{2013}{Work-space within the Virtual Reality Scope}{}{\ul}
\entry{2013}{Workshop in Photography in the Green Living Creativity}{}{\ul}
\entry{2014}{Creative Architecture Industry}{}{\uoa}
\end{minipage}
\end{document}


\noindent\vspace{...}as a part of the width argument for minipage. I would think that would give an error, that really does not belong there. – daleif Aug 02 '18 at 18:26%from ends of lines in the definitions so introducing extra spaces in the output. – David Carlisle Aug 02 '18 at 18:28