Maneira de alinhar horizontalmente o texto em diferentes notas de rodapé

Maneira de alinhar horizontalmente o texto em diferentes notas de rodapé

Existe alguma maneira de alinhar o texto nas notas de rodapé sem adicionar \hspace{}e adivinhar o espaçamento?

O que eu tenho: insira a descrição da imagem aqui

O que eu gostaria de ter: 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}

Responder1

Você poderia usar o pacote 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}

insira a descrição da imagem aqui

informação relacionada