Tikz 表格单元格内

Tikz 表格单元格内

由于我对 LaTeX 的了解非常有限,我试图修改现有的宏来生成桥接图。插入的是基本输出。我想将 Tikz 绘制的正方形置于图的(几乎)中间。我该怎么做? 在此处输入图片描述

我的 MWE:

\documentclass[oneside,english]{book}
\usepackage{mathptmx}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage[paperwidth=6in,paperheight=9in]{geometry}
\geometry{verbose,tmargin=1in,bmargin=1in,lmargin=1in,rmargin=1in}
\usepackage{fancyhdr}
\pagestyle{fancy}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\usepackage{array}
\usepackage{amsmath}

\makeatletter

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
\newcommand{\noun}[1]{\textsc{#1}}
%% Because html converters don't know tabularnewline
\providecommand{\tabularnewline}{\\}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\numberwithin{equation}{section}
\numberwithin{figure}{section}
\@ifundefined{lettrine}{\usepackage{lettrine}}{}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\usepackage{enumitem}
\usepackage{needspace}
\usepackage{adjustbox}
{\usepackage{tikz}
%\usepackage{mathpazo}


\newcommand{\seatLabel}[1]{\textsc{#1}}

%%
\newlength{\br}
\setlength{\br}{18em}
%
\renewcommand{\c}{\(\clubsuit\)}
\renewcommand{\d}{\(\diamondsuit\)}
\newcommand{\h}{\(\heartsuit\)}
\newcommand{\s}{\(\spadesuit\)}

%
\newcommand{\hand}[4]{
 \begin{minipage}[t]{\br}%I chose \br=8em
 \begin{tabbing}
 %width of parbox depends on the parameters:
 %min{\br, max{string #1, ..., string #4}}
  \(\spadesuit\)  \= #1 \\
  \(\heartsuit\)  \> #2 \\
  \(\diamondsuit\)\> #3 \\
  \(\clubsuit\)   \> #4
 \end{tabbing}
 \end{minipage}     }%end \hand
%


%
\newcommand{\bd}[6]{%
\begin{tabular}[t]{ p{7em} p{7em} p{7em}}
#1 & #3 & #2\\
#4 & {\begin{tikzpicture}
\draw (0,0) -- (1,0) -- (1,1) -- (0,1) -- (0,0);
\end{tikzpicture}} & #5\\
   & #6 &
\end{tabular}
}%end \crdima
%


\newcommand{\phandcctest}[5]{
\begin{minipage}[t]{1.0cm}%I chose \br=8em
%\begin{minipage}[t]{2.3cm}%I chose \br=8em
%\end{minipage}
\begin{minipage}[t]{2.0cm}%I chose \br=8em
\begin{tabbing}
%width of parbox depends on the parameters:
%min{\br, max{string #1, ..., string #4}}
 #5 \= \\
\(\spadesuit\) \= #1 \\
\(\heartsuit\) \> #2 \\
\(\diamondsuit\)\> #3 \\
\(\clubsuit\) \> #4
\end{tabbing}
\end{minipage}
%\hfill
\end{minipage} }%end \hand

\AtBeginDocument{
  \def\labelitemi{\(\cdot\)}
}

\makeatother

\usepackage{babel}
\begin{document}

\title{A Switch in Time}


\author{Matthew Granovetter}

\maketitle

\chapter*{Introduction}

\thispagestyle{empty}

\noindent \noun{The following deal} was reported by Eric Kokish in
\emph{Bridge Today} magazine, Nov/Dec 1993 issue.

\noindent \begin{quote}
\begin{minipage}{18em}
\begin{small}
Santiago, Chile, Bermuda Bowl 1993, Semifinals\\
{Norway vs. Brazil}\\
\end{small}
\vspace{-1em}
\begin{center}\small{\textbf{VuGraph}}\\ \end{center}
\bd
{\begin{minipage}[t]{\br} \small Dealer: East\\N-S vulnerable   \end{minipage}}%
{\begin{minipage}[t]{\br} \small Lead: spade\\Contract: heart   \end{minipage}}%
{\phandcctest{QJ42}{\underline{7}}{AJ763}{843}{\seatLabel{Aa}}}%
{\phandcctest{K1085}{\underline{A}K543}{Q4}{AJ}{\seatLabel{Barbosa}}}%
{\phandcctest{976}{Q86\underline{2}}{K10952}{K}{\seatLabel {Comacho}}}%
{\phandcctest{A3}{J10\underline{9}}{8}{Q1097652}{\seatLabel{Groetheim}}}%
\\[1em]
\begin{minipage}[t]{\br}
\small{Closed Room Result: Five clubs doubled by the Brazilian South, down 1, +100 for Norway.}
\end{minipage}
\end{minipage}
\end{quote}``Five clubs doubled goes down only one in the closed room. The Brazilian
supporters are screaming with relief and delight. How can they possibly
lose now?''


\end{document}

答案1

在第 62 行,您可以\begin{tabular}[t]{ p{7em} p{7em} p{7em}}用替换\begin{tabular}[t]{ m{7em} m{7em} m{7em}}。要在 tikz 中绘制矩形,您只需执行\draw (0,0) rectangle (1,1);;)

\documentclass[varwidth,border=50]{standalone}
\usepackage{mathptmx}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage[paperwidth=6in,paperheight=9in]{geometry}
\geometry{verbose,tmargin=1in,bmargin=1in,lmargin=1in,rmargin=1in}
\usepackage{fancyhdr}
\pagestyle{fancy}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\usepackage{array}
\usepackage{amsmath}

\makeatletter

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
\newcommand{\noun}[1]{\textsc{#1}}
%% Because html converters don't know tabularnewline
\providecommand{\tabularnewline}{\\}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\numberwithin{equation}{section}
\numberwithin{figure}{section}
\@ifundefined{lettrine}{\usepackage{lettrine}}{}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\usepackage{enumitem}
\usepackage{needspace}
\usepackage{adjustbox}
{\usepackage{tikz}
%\usepackage{mathpazo}


\newcommand{\seatLabel}[1]{\textsc{#1}}

%%
\newlength{\br}
\setlength{\br}{18em}
%
\renewcommand{\c}{\(\clubsuit\)}
\renewcommand{\d}{\(\diamondsuit\)}
\newcommand{\h}{\(\heartsuit\)}
\newcommand{\s}{\(\spadesuit\)}

%
\newcommand{\hand}[4]{
 \begin{minipage}[t]{\br}%I chose \br=8em
 \begin{tabbing}
 %width of parbox depends on the parameters:
 %min{\br, max{string #1, ..., string #4}}
  \(\spadesuit\)  \= #1 \\
  \(\heartsuit\)  \> #2 \\
  \(\diamondsuit\)\> #3 \\
  \(\clubsuit\)   \> #4
 \end{tabbing}
 \end{minipage}     }%end \hand
%


%
\newcommand{\bd}[6]{%
\begin{tabular}[t]{ m{7em} m{7em} m{7em}}
#1 & #3 & #2\\
#4 & {\begin{tikzpicture}
\draw (0,0) rectangle (1,1);
\end{tikzpicture}} & #5\\
   & #6 &
\end{tabular}
}%end \crdima
%


\newcommand{\phandcctest}[5]{
\begin{minipage}[t]{1.0cm}%I chose \br=8em
%\begin{minipage}[t]{2.3cm}%I chose \br=8em
%\end{minipage}
\begin{minipage}[t]{2.0cm}%I chose \br=8em
\begin{tabbing}
%width of parbox depends on the parameters:
%min{\br, max{string #1, ..., string #4}}
 #5 \= \\
\(\spadesuit\) \= #1 \\
\(\heartsuit\) \> #2 \\
\(\diamondsuit\)\> #3 \\
\(\clubsuit\) \> #4
\end{tabbing}
\end{minipage}
%\hfill
\end{minipage} }%end \hand

\AtBeginDocument{
  \def\labelitemi{\(\cdot\)}
}

\makeatother

\usepackage[english]{babel}
\begin{document}

\title{A Switch in Time}


\author{Matthew Granovetter}

\maketitle

\chapter*{Introduction}

\thispagestyle{empty}

\noindent \noun{The following deal} was reported by Eric Kokish in
\emph{Bridge Today} magazine, Nov/Dec 1993 issue.

\noindent \begin{quote}
\begin{minipage}{18em}
\begin{small}
Santiago, Chile, Bermuda Bowl 1993, Semifinals\\
{Norway vs. Brazil}\\
\end{small}
\vspace{-1em}
\begin{center}\small{\textbf{VuGraph}}\\ \end{center}
\bd
{\begin{minipage}[t]{\br} \small Dealer: East\\N-S vulnerable   \end{minipage}}%
{\begin{minipage}[t]{\br} \small Lead: spade\\Contract: heart   \end{minipage}}%
{\phandcctest{QJ42}{\underline{7}}{AJ763}{843}{\seatLabel{Aa}}}%
{\phandcctest{K1085}{\underline{A}K543}{Q4}{AJ}{\seatLabel{Barbosa}}}%
{\phandcctest{976}{Q86\underline{2}}{K10952}{K}{\seatLabel {Comacho}}}%
{\phandcctest{A3}{J10\underline{9}}{8}{Q1097652}{\seatLabel{Groetheim}}}%
\\[1em]
\begin{minipage}[t]{\br}
\small{Closed Room Result: Five clubs doubled by the Brazilian South, down 1, +100 for Norway.}
\end{minipage}
\end{minipage}
\end{quote}``Five clubs doubled goes down only one in the closed room. The Brazilian
supporters are screaming with relief and delight. How can they possibly
lose now?''


\end{document}

在此处输入图片描述

答案2

你看过 CTAN 吗?有一个包叫bridge。 当然!

事实上,这是一个.tex1991 年的文件,现在仍然使用\documentstyle(LaTeX 2.09)。我已将其下载到我的电脑中,更改\documentstyle\documentclass,用 pdflatex 编译,得到

在此处输入图片描述

它看起来像你想要的。该图是用命令完成的。

\begin{quote}
\crdima{N/None}{%
  \begin{minipage}[t]{\br}
     Play:\\demo
  \end{minipage}}%
  {\hand{J74}{AJ}{QJT2}{Q874}}%
  {\hand{A3}{K76}{963}{KJ952}}%
  {\hand{K86}{T9542}{874}{T3}}%
  {\hand{QT952}{Q83}{AK5}{A6}}%
\end{quote}

本文档中对此进行了定义。

相关内容