I'm trying to produce a labelled list of axioms like so:
\documentclass{article}
\usepackage{amsmath, amsthm, amssymb}
\begin{document}
\begin{itemize}
\item[(Reflexivity)] For all $a \in P$ we have that $a \leq a$,
\item[(Transitivity)] For all $a,b,c \in P$ s.t.
$a \leq b, b\leq c$ we have that $a\leq c$.
\end{itemize}
\end{document}
But this causes the label to run into the left margin of my document.
How would one add a right-aligned label to this list? Perhaps in a similar fashion to a && in an align environment?
I'd appreciate any help with this one, thanks.
EDIT - It's been suggested that an item regarding altering left margin spacing would fix this problem. While that is an adequate solution to the problem of the text running into the margin, I remain interested in a solution to the problem as posed - i.e. a right aligned label.
FURTHER CLARIFICATION - I realise I haven't quite managed to express myself clearly. I would like a bullet pointed list (in itemise, description, whatever) where I have labels (Reflexivity, Transitivity, Anti-Symmetry) to the right hand side of the list - that is, right aligned to the right hand margin of the page. I was unable to do this in my MWE so they appear as the bullet pointed list. Would anyone be able to show how to create labels on the RHS:
\documentclass{article}
\usepackage{amsmath, amsthm, amssymb}
\begin{document}
\begin{itemize}
\item For all $a \in P$ we have that $a \leq a$, (Reflexivity)
\item For all $a,b,c \in P$ s.t.
$a \leq b, b\leq c$ we have that $a\leq c$. (Transitivity)
%%Here achieved with spaces
\end{itemize}
\end{document}


\setlist[itemize]{leftmargin=22mm}could help. – Bobyandbob Nov 21 '17 at 16:52descriptioninstead ofitemize. Alternatively uselabeling(needs either a KOMA-Script class or packagescrextend). Depending on the class, there could be other solutions. So please show us a minimal but working example (MWE). – Schweinebacke Nov 21 '17 at 16:55