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