我可以重复使用的 Bridge 记分卡,可以在右侧进行讨论

我可以重复使用的 Bridge 记分卡,可以在右侧进行讨论

我有兴趣复制标准桥牌记分卡,以便将其纳入书中,讨论将参考记分卡(可能突出显示部分内容)。我预计记分卡的宽度可能是页面宽度的一半?

\usepackage[]{tabularx}
\usepackage{booktabs}
\begin{document}
\begin{tabularx}{\textwidth}{l c c c}
  \multicolumn{4}{c}{\colorbox{black}{\color{white}Scoring for Bridge}} \\
  VALUE PER TRICK &  Not doubled & Doubled & Redoubled \\
  \midrule
  IF TRUMP IS:& & & \\
  Clubs or Diamonds (\clubs, \diamonds) & 20 & 40 & 80 \\
  Hearts or Spades (\hearts, \spades) & 30 & 60 & 120\\
  NO TRUMP CONTRACT:& & & \\
  1st trick over 6 & 40 & 80 & 160 \\
  Each additional trick over 6 & 30 & 60 & 120 \\
  \multicolumn{4}{c}{Game is 100 Points} \\
  \multicolumn{4}{c}{\textit{First side to win 100 points below line, in one or more hands, wins a game}} \\
  \multicolumn{4}{c}{\textit{When a side wins two games, a rubber is concluded.}} \\
  \midrule
  \multicolumn{4}{c}{\textbf{PREMIUM SCORE}} \\
  \midrule
\end{tabularx} \\
\begin{tabularx}{\textwidth}{l r r r r r r}
  & \multicolumn{3}{c}{NOT VULNERABLE} & \multicolumn{3}{c}{VULNERABLE}\\
  & Not Dbld. & Dbld. & Redbld. & Not Dbld. & Dbld. & Redbld. \\
  \midrule
  Each overtrick & Trick Value & 100 & 200 & Trick Value & 200 & 400 \\
  \multicolumn{7}{l}{\textit{(Tricks made in excess of contract)}} \\
  \midrule
  Small Slam (12 tricks) & 500 & 500 & 500 & 750 & 750 & 750\\
  Grand Slam (13 tricks) & 1000 & 1000 & 1000 & 1500 & 1500 & 1500\\
  \midrule
  \multicolumn{7}{l}{Two-Game Rubber\dotfill 700} \\
  \multicolumn{7}{l}{Three-Game Rubber\dotfill 500} \\
  \multicolumn{7}{l}{Unfinished Rubber, One Game\dotfill 300} \\
  \multicolumn{7}{l}{Unfinished Game, Part Score\dotfill 100} \\
  \midrule
  \multicolumn{7}{l}{Bonus for fufilling any doubled contract\dotfill 50} \\
  \multicolumn{7}{l}{Bonus for fulfilling any redoubled contract\dotfill 100} \\
  \midrule
  \multicolumn{7}{l}{Honours (Scored above the line by either side)} \\
  \multicolumn{7}{l}{Four of the five trump Honours (A, K, Q, J, 10) in one hand\dotfill 100} \\
  \multicolumn{7}{l}{All five trump Honours (A, K, Q, J, 10) in one hand\dotfill 150} \\
  \multicolumn{7}{l}{All four Aces in one hand at notrump contract\dotfill 150} \\
  \midrule
  \multicolumn{7}{c}{\textbf{UNDERTRICK PENALTIES}} \\
  \midrule
  \multicolumn{4}{l}{\textbf{NOT VULNERABLE}} & Not Doubled & Doubled & Redoubled \\
  \midrule
  \multicolumn{5}{l}{One\dotfill 50} & 100 & 200\\
  \multicolumn{5}{l}{Two\dotfill 100} & 300 & 600\\
  \multicolumn{5}{l}{Three\dotfill 150} & 500 & 1000\\
  \multicolumn{4}{l}{For each additional undertrick} & Add 50 &  Add 300 & Add 600\\
  \midrule
  \multicolumn{7}{l}{\textbf{VULNERABLE}} \\
  \multicolumn{5}{l}{One\dotfill 100} & 200 & 400\\
  \multicolumn{5}{l}{Two\dotfill 200} & 500 & 1000\\
  \multicolumn{5}{l}{Three\dotfill 300} & 800 & 1600\\
  \multicolumn{4}{l}{For each additional undertrick} & Add 100 &  Add 300 & Add 600\\
  \midrule
\end{tabularx}\\
\textit{Doubling and/or redoubling do not affect honour, slam or rubber points.}\\
\textit{Vulnerability does not affect honour points or bonus points.}\\
\textit{The side making the most points at the conclusion of the rubber (regardless of games) is the actual winner of the rubber.}

这与我的另一个序言产生了以下结果。

我的记分卡

我的目标是这个

目标

这很接近了 - 我希望能够更好地控制它的大小?也许可以把它放在 minipage 中?

我的 LaTeX 不太好,所以我在寻找有用的策略?表格是正确的做法吗?我希望整个东西缩小到大约一半大小,并希望绘制方框或标注以便能够引用其中的各个部分。

嵌套表格是个好主意吗?

我也不确定为什么这两个表没有对齐。

我希望我已经提供了足够的细节并且在这里提出了正确的问题?

相关内容