¿Cómo alinear varias partes del título?

¿Cómo alinear varias partes del título?

Estoy intentando recrear el siguiente aspecto del título, desde cero.

ingrese la descripción de la imagen aquí

Aquí está mi intento hasta ahora:

\documentclass[paper=A4, fontsize =11pt ]{scrartcl} % A4 Paper and 11pt font size 
\usepackage[english]{babel} % English language 
\usepackage{amsmath,amsfonts,amsthm,amssymb} % American Mathematical Society packages
\usepackage{geometry} % Geometry package 
\usepackage{datetime } % Date and time  package 

\usepackage{fancyhdr} % Custom headers and footers
\pagestyle{fancyplain} % Makes all pages in the document conform to the custom headers and footers
\fancyhead{} % Removes page header 
\fancyfoot{} % Removes page footer 
\renewcommand{\headrulewidth}{0pt} % Remove header underlines
\renewcommand{\footrulewidth}{0pt} % Remove footer underlines


\title{
\normalfont \normalsize 
\text{Long title element} \\ [11pt]  
\text{Title element}\\ [14pt] 
\begin{flushleft}
Text 
\end{flushleft}
}


\begin{document}
\maketitle
Something
\end{document}   

El problema con el que estoy luchando es cómo alinear correctamente la fecha, pero agradeceré cualquier otra sugerencia sobre cómo mejorar el texto.

Respuesta1

Simplemente podría modificar su flushleftentorno para

\begin{flushleft}
Text \hfill \today
\end{flushleft}

Por el momento estoy pasando por alto cómo evitar que \maketitlese imprima una fecha adicional.

\documentclass[paper=A4, fontsize =11pt ]{scrartcl} % A4 Paper and 11pt font size 
\usepackage[english]{babel} % English language 
\usepackage{amsmath,amsfonts,amsthm,amssymb} % American Mathematical Society packages
\usepackage{geometry} % Geometry package 
\usepackage{datetime2} % Date and time  package 

\usepackage{fancyhdr} % Custom headers and footers
\pagestyle{fancyplain} % Makes all pages in the document conform to the custom headers and footers
\fancyhead{} % Removes page header 
\fancyfoot{} % Removes page footer 
\renewcommand{\headrulewidth}{0pt} % Remove header underlines
\renewcommand{\footrulewidth}{0pt} % Remove footer underlines


\title{
\normalfont \normalsize 
\text{Long title element} \\ [11pt]  
\text{Title element}\\ [14pt] 
\begin{flushleft}
Text \hfill \today
\end{flushleft}
}


\begin{document}
\maketitle
Something
\end{document}

información relacionada