가로 공간의 양을 확인하는 명령

가로 공간의 양을 확인하는 명령

제발, 저는 석사 논문을 완성하는 데 의존하기 때문에 이것은 매우 중요합니다. 그래서 여기저기 답을 찾아봤는데 못찾았네요..

기본적으로 명령을 내린 시점에 문서에 가로 공간(pt, in, cm 등)이 얼마나 존재하는지 출력하는 명령이 있는지 알고 싶습니다. 예를 들어 다음 그림에서 빨간색 선의 길이를 알고 싶습니다.

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

\documentclass{memoir}
\usepackage{multicol}       % Suporte a mesclagens em colunas
\usepackage{multirow}       % Suporte a mesclagens em linhas
\usepackage{float}          % Fixa tabelas e figuras no local exato
\usepackage{array}
\usepackage{tabularx}
\usepackage{ltablex}
\usepackage{ragged2e}       % also allows hyphenation
\usepackage{booktabs}       % get "good" rules in tables
                            % Use it's \toprule, \midrule and \bottomrule.
\usepackage{siunitx}        % Handle numerical value nicely,for aligning on 
                            % the decimal point
\usepackage{amsmath,environ}
\usepackage{blindtext}


 \usepackage[left=30mm,top=30mm,right=20mm,bottom=20mm]{geometry}


\NewEnviron{variables}{%
where:\quad 
\begin{tabularx}{\textwidth}[t]{%
        |>{${}}                         l   <{{}$}  @{${}:\enspace{}$}%
        >{\raggedright\arraybackslash}  X   <{}     %
        >{\raggedright\arraybackslash{}(}   l   <{)}| %
        >{\raggedright\arraybackslash}  X   <{}
    }%
    \BODY 
\end{tabularx}  
}

\begin{document}

\blindtext

\begin{variables}
1   & 1& 1\\
2   & yield stress\\
3   & plastic viscosity \\
4   & shear rate
\end{variables}

\blindtext

\end{document}

답변1

테이블에 약간 이상한 효과가 있다고 추천할 수는 없지만 원래 정의에 더 가깝게 유지한 후 서문의 아무 곳이나 추가하면 출력을 생성하는 ltablex명령을 제공합니다 .\keepXColumns\usepackage{ltablex}tabularx

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

관련 정보