異なる脚注のテキストを水平に揃える方法

異なる脚注のテキストを水平に揃える方法

\hspace{}スペースを追加したり推測したりせずに、脚注内のテキストを揃える方法はありますか?

私が持っているもの: ここに画像の説明を入力してください

私が欲しいもの: ゴール

ムウェ

\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}

答え1

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}

ここに画像の説明を入力してください

関連情報