다른 각주에서 텍스트를 가로로 정렬하는 방법

다른 각주에서 텍스트를 가로로 정렬하는 방법

\hspace{}간격을 추가하거나 추측하지 않고 각주에서 텍스트를 정렬할 수 있는 방법이 있습니까 ?

내가 가진 것: 여기에 이미지 설명을 입력하세요

내가 갖고 싶은 것: 목표

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}

답변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}

여기에 이미지 설명을 입력하세요

관련 정보