我想创建一个文档,其中标注了棋局中的每一步。
我设想左侧有一个棋盘,右侧有注释。
抱歉,没有包含一个小例子。我是 Tex 的新手。
答案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}