将两个数字对齐,一个位于另一个之上

将两个数字对齐,一个位于另一个之上

我想做这样的事,但我不知道该怎么做。在此处输入图片描述

答案1

\documentclass{article}
\begin{document}
\begin{tabular}{*{6}{c}}
  0 & 1 & 0 & 1 & \textunderscore & \textunderscore \\
  \textunderscore & 1 & \textunderscore & 1 & 1 & 0 
\end{tabular}
\end{document}

在此处输入图片描述

答案2

这可能有点过头了,但输入语法稍微简单一些,因为空格分隔数字。这使用了为语言学中逐字排列注释而设计的宏。\tu但是,括号是必需的。如果数字有多个数字,它们将向左对齐。

\documentclass{article}
\usepackage{cgloss4e} % part of gb4e package but you don't need it all
\newcommand*{\tu}{\textunderscore}
\begin{document}
\gll 0 1 0 1 {\tu} {\tu}\\
    {\tu} 1 {\tu} 1 0 0 \\

\end{document}

代码输出

答案3

verbatim

在此处输入图片描述

\documentclass{article}

\begin{document}
\begin{verbatim}
  0 1 0 1 _ _ 
  _ 1 _ 1 1 0
\end{verbatim}
\end{document}

相关内容