将选择区域拆分为两列(表格、小页面或其他任何可用内容)

将选择区域拆分为两列(表格、小页面或其他任何可用内容)

我使用表格环境来制作这个 2x2 表:

在此处输入图片描述

这些是程序的输入和输出示例。

在 PDF 查看器中,我希望能够仅选择此表格的一侧,但我的查看器只允许我像这样选择:

在此处输入图片描述

我能做些什么来只选择其中的一边吗?也许与 minipage 环境有关?

我的 TeX 代码:

\begin{center}
\begin{ttfamily}
\begin{tabular}{L{6cm}|L{6cm}}
    \normalfont \textbf{Entrada} & \normalfont \textbf{Saída}     \\ \hline
    3 3 1     & 15     \\
    1 2 10    & 15     \\
    1 3 5     &        \\
    2 3 3     &        \\
    3 3 2     &        \\
    1 2 10    &        \\
    1 3 5     &        \\
    2 3 3     &        \\
\end{tabular}
\end{ttfamily}
\end{center}

答案1

您需要tabular按列方式构建,而不是默认的按行方式:

\documentclass{article}

\usepackage[utf8]{inputenc}

\begin{document}

\ttfamily
% Construct tabular by-row (default approach)
\begin{tabular}{p{6cm}|p{6cm}}
  \normalfont \textbf{Entrada} & \normalfont \textbf{Saída} \\
  \hline
  3 3 1     & 15     \\
  1 2 10    & 15     \\
  1 3 5     &        \\
  2 3 3     &        \\
  3 3 2     &        \\
  1 2 10    &        \\
  1 3 5     &        \\
  2 3 3     &
\end{tabular}

\bigskip

% Construct tabular by-column
\begin{tabular}{l|l}
  \normalfont \textbf{Entrada} & \normalfont \textbf{Saída} \\
  \hline
  \begin{tabular}[t]{@{}p{6cm}@{}}
    3 3 1  \\ 1 2 10 \\ 1 3 5 \\ 2 3 3 \\ 3 3 2 \\
    1 2 10 \\ 1 3 5  \\ 2 3 3
  \end{tabular} &
  \begin{tabular}[t]{@{}p{6cm}@{}}
    15 \\ 15
  \end{tabular}
\end{tabular}

\end{document}

首先tabular按以下方式选择(按行):

在此处输入图片描述

第二种tabular选择这种方式(按列)​​:

在此处输入图片描述

相关内容