在制表环境中使用 \hfill

在制表环境中使用 \hfill

我想\hfill在制表环境中使用,但似乎没有效果。我该怎么做?

梅威瑟:

\documentclass{article}

\setlength{\parindent}{0pt}

\begin{document}

\begin{tabbing}
Foo bar baz: \= Lib  \hfill Bizim\\
Foo: \> Kip\\
\end{tabbing}

Foo bar baz: Lib  \hfill Bizim

Foo: Kip

\end{document}

(由于某种原因,我无法上传屏幕截图,因为我收到一条错误消息“无法上传图像;服务器发生错误”)

答案1

我建议使用某种表格环境。下面是使用tabularray包的示例:

\documentclass{article}

\setlength{\parindent}{0pt}

\usepackage[showframe]{geometry} % just to show that the text is aligned with the margin
\usepackage{tabularray}

\begin{document}

\begin{tblr}{@{}lX@{}}
Foo bar baz: & Lib  \hfill Bizim\\
Foo: & Kip\\
\end{tblr}

\end{document}

在此处输入图片描述

答案2

您可以使用宏来测量文本\tabset,并使用文本来测量宽度\tabuse。您不需要制表环境。

\newdimen\tabw
\def\tabset#1{\par \setbox0=\hbox{#1}\tabw=\wd0 \leavevmode\box0 }
\def\tabuse#1{\par \leavevmode\hbox to\tabw{#1\hss}}

\tabset {Foo bar baz:} \ Lib  \hfill Bizim
\tabuse {Foo:}         \ Kip

答案3

也许右对齐\`有你想要的效果

\begin{tabbing}
\hspace{0.2\textwidth} \= \hspace{0.2\textwidth} \= \hspace{0.2\textwidth}  \kill   % \kill lets the definition line disappear
Foo bar baz: \> Lib \` right aligned Bizim\\
Foo: \> Kip \> Bizim \\
\end{tabbing}

在此处输入图片描述

相关内容