Manera de alinear horizontalmente el texto en diferentes notas al pie

Manera de alinear horizontalmente el texto en diferentes notas al pie

¿Hay alguna forma de alinear el texto en las notas a pie de página sin agregar \hspace{}ni adivinar el espacio?

Lo que tengo: ingrese la descripción de la imagen aquí

Lo que me gustaría tener: meta

MWE

\documentclass{scrreprt}
\usepackage{siunitx} %for SI units
\usepackage{wasysym} %for diameter symbol

\begin{document}
    Some text\footnote{PTFE tube: $\diameter_{\text{inner}}=\SI{0.5}{\milli\meter}$, $\diameter_{\text{outer}}=1/16^{\prime\prime}$} and some other text\footnote{Silicone tube: $\diameter_{\text{inner}}=\SI{1}{\milli\meter}$, $\diameter_{\text{outer}}=\SI{3}{\milli\meter}$}. 
\end{document}

Respuesta1

Podrías usar el paquete eqparbox:

\documentclass{scrreprt}
\usepackage{siunitx} %for SI units
\usepackage{wasysym} %for diameter symbol
\usepackage{eqparbox}
\begin{document}
    Some text\footnote{%
    \eqmakebox [A][l]{PTFE tube:} 
    \eqmakebox [B][l]{$\diameter_{\text{inner}}=\SI{0.5}{\milli\meter}$,} $\diameter_{\text{outer}}=1/16^{\prime\prime}$}
    and some other text\footnote{%
    \eqmakebox [A][l]{Silicone tube:} 
    \eqmakebox [B][l]{$\diameter_{\text{inner}}=\SI{1}{\milli\meter}$,} $\diameter_{\text{outer}}=\SI{3}{\milli\meter}$}.
\end{document}

ingrese la descripción de la imagen aquí

información relacionada