在Latex中如何实现这种格式?

在Latex中如何实现这种格式?

如何在 LaTeX 中实现以下格式?我不知道如何正确地将示例放入 LaTeX 中。

在此处输入图片描述

答案1

使用verbatim,您将得到类似以下的结果。这是您所说的吗?

在此处输入图片描述

\documentclass{article}
\renewcommand*\ttdefault{txtt}
\usepackage{upquote}
\begin{document}
\begin{verbatim}
and your regressors look like this (2 conditions):

```
1 1 0 0 1 1 0 0
0 0 1 1 0 0 1 1
```

then the blocklables might look like this:

```
1 1 2 2 3 3 4 4
```
\end{verbatim}
\end{document}

相关内容