用于注册 GO 游戏的模板。Igo 包在 overleaf 中不起作用

用于注册 GO 游戏的模板。Igo 包在 overleaf 中不起作用

我在 Overleaf 中撰写文档,并尝试使用igo 包

但背面说

LaTeX Error: File `igo.sty' not found.
l.3 \begin
      {document}^^M

即使我创建了相应的igo.sty文件。请帮助我

我只想要一个使用一些 Go 包来注册一些游戏的模板。

答案1

(免责声明:我是 Overleaf 的支持人员。)

igo不包含在 TeX Live 中,因此默认情况下在 Overleaf 上不可用。另一种方法是使用包psgo(它在 TeX Live 中),例如(来自文档

\documentclass{article}
\usepackage{psgo}

\begin{document}
\begin{psgoboard}[9]
\move*{c}{3}
\move*{g}{7}
\pass*
\move*{f}{1}
\move*{a}{9}
\move{f}{6}  % new \move commands
\move{e}{6}
\pass
\move{c}{5}
\end{psgoboard}
\end{document}

以下是 Overleaf 上的一个示例项目:https://www.overleaf.com/read/fzyvmvdxqsvr。使用Overleaf 上的LaTeX dvipdfXeLaTeX引擎;您可以点击预览面板上方的齿轮图标后在自己的项目中更改“LaTeX 引擎”设置。

相关内容