我使用表格环境来制作这个 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
选择这种方式(按列):