これはとても重要です。修士論文を完成させるためには、これが必要です。だから、答えを探し回ったのですが、見つかりませんでした。
基本的に、コマンドが発行された時点でどれだけの水平方向のスペースが存在するか (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}