두 줄의 단어 정렬

두 줄의 단어 정렬

두 줄 사이의 평행성을 강조하기 위해 특정 단어를 정렬하고 싶습니다.

다음 예는 Peano의 Formulario 서문에 있는 목록에서 가져온 것입니다.

예

c) 10 20 30 … 100 200 … 당 de ι κ λ … ρ σ …
결과를 억제합니다.

나는 \usepackage{enumitem}\setenumerate[1]{label={\alph*)}}목록 스타일을 재현하는 데 사용했습니다.

내 첫 번째 생각은 테이블을 사용하는 것이었지만 목록 정렬과 호환되지 않는 것 같습니다.

답변1

[t]op-aligned 에서 세 번째 항목을 설정할 수 있습니다 tabular.

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

\documentclass{article}

\usepackage{enumitem}
\setenumerate[1]{label={\alph*)}}

\begin{document}

\begin{enumerate}
  \item First item

  \item Second item

  \item 
  \begin{tabular}[t]{@{} l *{7}{c} @{}}
    suppressione de          & $\iota$ & $\chi$ & $\lambda$ & \ldots & $\rho$ & $\sigma$ & \ldots \\
    que resulta expresso per &    10   &   20   &     30    & \ldots &   100  &    200   & \ldots
  \end{tabular}
\end{enumerate}

\end{document}

답변2

table/tabular일반 환경 이나 환경을 사용할 수 있습니다 tabbing(아래 및여기(외부 링크)).

\documentclass{article}
\begin{document}
  \begin{tabbing}
    xxxxxxxxxxxxxxx \= xxx \= xxx \= xxx \= xxx \kill % Not printed. Just for reserving space.
    c) TextText \> $i$ \> $\chi$ \> \ldots \> $\sigma$\\
    AnotherTextText \> $10$ \> $20$ \> \ldots \> $100$\\
  \end{tabbing}
\end{document}

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

추신: 이것은 확실히 우아한 해결책은 아닙니다. 방금 내 마음에 떠올랐다.

답변3

\documentclass{article}
\usepackage{parskip}
\usepackage{tabto}\NumTabs{11}
\def\|{\tab}
\begin{document}
suppressione de\|\| $\iota$\|$\chi$\|$\lambda$\|\ldots\|$\rho$\|$\sigma$\|\ldots\\
que resulta expresso per\|10\|20\|30\|\ldots\|100\|200\|\ldots
\end{document}

관련 정보