如何在一列中呈現一系列棋盤,在另一列中呈現文字?

如何在一列中呈現一系列棋盤,在另一列中呈現文字?

我想創建一個文檔,其中註釋了國際象棋遊戲中的每一步。

我設想左側有棋盤,右側有註解。

很抱歉沒有包括一個小例子。我是特克斯的新手。

答案1

像這樣?

在此輸入影像描述

\documentclass{article}


\usepackage{skak}
\usepackage[margin=1in]{geometry}
\usepackage{lipsum}


\begin{document}

\begin{tabular}{cc}
\begin{minipage}{0.45\textwidth}
\newgame
\showboard  
\end{minipage}
&
\begin{minipage}{0.45\textwidth}
Black can win in two moves, with white's assistance.

\lipsum[1-2]
\end{minipage}
\end{tabular}
\end{document}

答案2

我覺得alongtable可能比較合適。

我還創建了一個新的列類型,K以避免minipage在每個單元格中鍵入環境。

\documentclass{article}
\usepackage{array}
\renewcommand{\arraystretch}{2}
\usepackage{longtable}
\usepackage{skak}
\usepackage[margin=1in]{geometry}
\newcolumntype{K}{>{\begin{minipage}[t][\height][c]{0.45\textwidth}\arraybackslash}c<{\end{minipage}}}
\usepackage{lipsum}
\begin{document}

\begin{longtable}{KK}
\newgame
\showboard  
&
A short description
\\
\newgame
\showboard  
&
Black can win in two moves, with white's assistance.
\\
\newgame
\showboard  
&
Black can win in two moves, with white's assistance.
\\
\newgame
\showboard  
&
A medium description \lipsum[1]
\\
\newgame
\showboard  
&
Black can win in two moves, with white's assistance.
\lipsum[1]
\\
\newgame
\showboard  
&
A long description \lipsum[1-2]
\\
\end{longtable}
\end{document}

在此輸入影像描述

在此輸入影像描述

在此輸入影像描述

相關內容