ARTICLE DETAIL

资讯详情

深耕网站建设与运营推广的一线实战洞察。

LaTeX 学术海报三大排版方案深度对比:beamerposter / tikzposter / baposter 选型与实践指南

LaTeX 学术海报三大排版方案深度对比:beamerposter / tikzposter / baposter 选型与实践指南 LaTeX 学术海报三大排版方案深度对比beamerposter / tikzposter / baposter 选型与实践指南【免费下载链接】scientific-agent-skillsTurn any AI agent into an AI Scientist. The #1 Agent Skills library for science, used by 190,000 scientists worldwide. 165 ready-to-use validated skills plus 100 scientific databases covering biology, chemistry, medicine, and drug discovery. Compatible with Cursor, Claude Code, Codex, Pi, Antigravity, and the open Agent Skills standard.项目地址: https://gitcode.com/GitHub_Trending/cl/scientific-agent-skills导读本文围绕 skills/latex-posters/references/latex_poster_packages.md 的核心内容系统对比 LaTeX 生态中构建科研海报的三款主流宏包——beamerposter、tikzposter 与 baposter。文章将从功能对比矩阵、逐包模板解析、主题与配色定制、多栏布局、包间迁移、编译优化到混合方案给出可复制、可编译的完整 LaTeX 示例并结合本仓库的模板资产、脚本与测试帮助读者在学术会议、毕业答辩与科研展览场景下快速选型并产出出版级质量的学术海报。一、为什么需要专门的 LaTeX 海报方案科研海报是学术会议、研讨会与学术活动中传播研究成果的关键媒介。与普通文档不同海报要求远距离可读、快速传达核心信息、版面高度视觉化。LaTeX 凭借其稳定的排版引擎、强大的图形集成能力和对数学公式的原生支持成为生成出版级质量科研海报的主流选择。在 skills/latex-posters/SKILL.md 定义的技能体系中海报创建被拆分为规划内容 → AI 生成视觉元素 → 设计与布局 → 内容集成 → 精修与测试 → 编译交付六个阶段其中布局与排版阶段的核心技术决策就是选择哪个海报宏包。本文档聚焦这一技术决策三个宏包各有不同的语法体系、布局模型与美学风格选错方案会导致后续所有定制工作事倍功半。二、三大宏包功能对比矩阵beamerposter、tikzposter 与 baposter 是科研海报创作中被使用最多的三个宏包各自具有鲜明的优势、语法与适用场景。下表为三者核心维度的对比特性beamerpostertikzposterbaposter学习曲线易熟悉 Beamer 即可中等中等灵活性中等高中等偏高默认美学传统/学术现代/多彩专业/简洁主题支持丰富继承全部 Beamer 主题内置 自定义内置有限定制方式中等工作量借助 TikZ 轻松定制结构化方式布局系统基于 frame基于 block基于 box 与网格多栏手动自动自动图形集成标准 includegraphicsTikZ includegraphics标准 进阶社区支持庞大Beamer 社区增长中较小最佳场景传统学术、机构品牌化创意设计、自定义图形结构化多栏布局文件体积小中-大TikZ 开销中编译速度快较慢TikZ 处理快-中选择依据可以归结为一句话熟悉 Beamer 且面向传统学术场合选 beamerposter追求现代视觉与 TikZ 图形集成选 tikzposter需要结构化多栏自动布局选 baposter。三、beamerposterBeamer 用户的传统学术首选3.1 核心定位与优劣势beamerposter 在广受欢迎的 Beamer 演示类基础上扩展出海报尺寸文档支持完整继承了 Beamer 的全部功能、主题与定制能力。优势语法熟悉会 Beamer 就等于会 beamerposter学习成本几乎为零主题丰富可使用全部 Beamer 主题与配色方案机构品牌化容易匹配大学现有 Beamer 模板的视觉体系稳定成熟经过充分测试文档详尽块结构清晰block 天然构成组织单元适合传统海报学术会议、学位答辩等场景。劣势布局灵活性较低基于列column的布局系统有一定限制手动定位需要细致调整间距美学传统相对现代设计可能显得过时内置样式有限打造独特外观需要做主题定制。3.2 基础模板\documentclass[final,t]{beamer} \usepackage[sizea0,scale1.4,orientationportrait]{beamerposter} \usetheme{Berlin} \usecolortheme{beaver} % Configure fonts \setbeamerfont{title}{size\VeryHuge,series\bfseries} \setbeamerfont{author}{size\Large} \setbeamerfont{block title}{size\large,series\bfseries} \title{Your Research Title} \author{Author Names} \institute{Institution} \begin{document} \begin{frame}[t] % Title block \begin{block}{} \maketitle \end{block} \begin{columns}[t] \begin{column}{.45\linewidth} \begin{block}{Introduction} Your introduction text here... \end{block} \begin{block}{Methods} Your methods text here... \end{block} \end{column} \begin{column}{.45\linewidth} \begin{block}{Results} Your results text here... \includegraphics[width\linewidth]{figure.pdf} \end{block} \begin{block}{Conclusions} Your conclusions here... \end{block} \end{column} \end{columns} \end{frame} \end{document}这里\usepackage[sizea0,scale1.4,orientationportrait]{beamerposter}是关键size指定纸张规格a0/a1 等scale控制字体缩放比例以适配海报尺寸orientation决定横竖版。仓库中完整的可编译版本见 beamerposter_template.tex该模板额外配置了\setbeamersize{text margin left5mm, text margin right5mm}与\usepackage[margin10mm]{geometry}以最大化版面利用率并展示了带左右 Logo 的三栏页眉结构、结果分栏、页脚参考文献与二维码的完整海报骨架。3.3 主题与配色定制流行主题组合% Traditional academic \usetheme{Berlin} \usecolortheme{beaver} % Modern minimal \usetheme{Madrid} \usecolortheme{whale} % Blue professional \usetheme{Singapore} \usecolortheme{dolphin} % Dark theme \usetheme{Warsaw} \usecolortheme{seahorse}自定义颜色% Define custom colors \definecolor{primarycolor}{RGB}{0,51,102} % Dark blue \definecolor{secondarycolor}{RGB}{204,0,0} % Red \definecolor{accentcolor}{RGB}{255,204,0} % Gold % Apply to beamer elements \setbeamercolor{structure}{fgprimarycolor} \setbeamercolor{block title}{bgprimarycolor,fgwhite} \setbeamercolor{block body}{bgprimarycolor!10,fgblack}这套深蓝主色 红色辅色 金色点缀的配色在仓库模板中被直接采用见 beamerposter_template.tex通过bgprimarycolor!10这类百分比混色语法生成浅色块背景是实现低成本品牌化配色的常用手法。高级定制% Remove navigation symbols \setbeamertemplate{navigation symbols}{} % Custom title formatting \setbeamertemplate{title page}{ \begin{center} {\usebeamerfont{title}\usebeamercolor[fg]{title}\inserttitle}\\[1cm] {\usebeamerfont{author}\insertauthor}\\[0.5cm] {\usebeamerfont{institute}\insertinstitute} \end{center} } % Custom block style \setbeamertemplate{block begin}{ \par\vskip\medskipamount \begin{beamercolorbox}[colsep*.75ex,roundedtrue]{block title} \usebeamerfont*{block title}\insertblocktitle \end{beamercolorbox} {\parskip0pt\par} \usebeamerfont{block body} \begin{beamercolorbox}[colsep*.75ex,vmode,roundedtrue]{block body} }通过重定义\setbeamertemplate模板可以彻底改变标题页与 block 块的外观圆角、背景色、间距等这是 beamerposter 深度定制的核心入口。3.4 三栏布局\begin{columns}[t] \begin{column}{.3\linewidth} % Left column content \end{column} \begin{column}{.3\linewidth} % Middle column content \end{column} \begin{column}{.3\linewidth} % Right column content \end{column} \end{columns}注意 beamerposter 的列宽是手动指定的如.3\linewidth三列通常合计留出约 10% 的空间作为列间距。仓库模板中的三列结构即为该模式的直接应用左栏 Introduction/Methods、中栏 Results、右栏 Conclusions。四、tikzposter现代多彩设计的灵活之选4.1 核心定位与优劣势tikzposter 构建在强大的 TikZ 图形宏包之上开箱即提供现代、多彩的设计并可通过 TikZ 命令进行深度定制。优势现代美学开箱即用的当代、多彩设计块位置灵活block 可在海报任意位置摆放主题精美内置多个专业设计的主题TikZ 集成图形与自定义绘图无缝衔接配色易定制方便创建自定义调色板自动间距智能的 block 间距与对齐。劣势编译时间大海报的 TikZ 处理可能较慢文件体积TikZ 元素可能使 PDF 体积变大学习曲线高级定制需要掌握 TikZ 语法机构主题支持少匹配品牌视觉需要更多工作。4.2 基础模板\documentclass[25pt, a0paper, portrait, margin0mm, innermargin15mm, blockverticalspace15mm, colspace15mm, subcolspace8mm]{tikzposter} \title{Your Research Title} \author{Author Names} \institute{Institution} % Choose theme and color style \usetheme{Rays} \usecolorstyle{Denmark} \begin{document} \maketitle % First column \begin{columns} \column{0.5} \block{Introduction}{ Your introduction text here... } \block{Methods}{ Your methods text here... } % Second column \column{0.5} \block{Results}{ Your results text here... \begin{tikzfigure} \includegraphics[width0.9\linewidth]{figure.pdf} \end{tikzfigure} } \block{Conclusions}{ Your conclusions here... } \end{columns} \end{document}tikzposter 的类选项是理解其布局系统的关键25pt设置基准字号、margin控制外页边距、innermargin控制 block 内部留白、blockverticalspace控制块间垂直间距、colspace控制列间距、subcolspace控制子列间距。与 beamerposter 不同tikzposter 使用\column{0.5}以相对宽度比例自动划分栏目图片需要包裹在tikzfigure环境中以获得正确的居中与裁剪处理。仓库中的 tikzposter_template.tex 提供了三栏\column{0.33}完整结构并演示了\titlegraphic放置双 Logo、\block[width1.0\linewidth]实现全宽页脚的用法。4.3 内置主题与配色样式可用主题% Modern with radiating background \usetheme{Rays} % Clean with decorative wave \usetheme{Wave} % Minimal with envelope corners \usetheme{Envelope} % Traditional academic \usetheme{Basic} % Board-style with texture \usetheme{Board} % Clean minimal \usetheme{Simple} % Professional with lines \usetheme{Default} % Autumn color scheme \usetheme{Autumn} % Desert color palette \usetheme{Desert}配色样式% Professional blue \usecolorstyle{Denmark} % Warm colors \usecolorstyle{Australia} % Cool tones \usecolorstyle{Sweden} % Earth tones \usecolorstyle{Britain} % Default color scheme \usecolorstyle{Default}4.4 自定义配色样式\definecolorstyle{CustomStyle}{ \definecolor{colorOne}{RGB}{0,51,102} % Dark blue \definecolor{colorTwo}{RGB}{255,204,0} % Gold \definecolor{colorThree}{RGB}{204,0,0} % Red }{ % Background Colors \colorlet{backgroundcolor}{white} \colorlet{framecolor}{colorOne} % Title Colors \colorlet{titlefgcolor}{white} \colorlet{titlebgcolor}{colorOne} % Block Colors \colorlet{blocktitlebgcolor}{colorOne} \colorlet{blocktitlefgcolor}{white} \colorlet{blockbodybgcolor}{white} \colorlet{blockbodyfgcolor}{black} % Innerblock Colors \colorlet{innerblocktitlebgcolor}{colorTwo} \colorlet{innerblocktitlefgcolor}{black} \colorlet{innerblockbodybgcolor}{colorTwo!10} \colorlet{innerblockbodyfgcolor}{black} % Note colors \colorlet{notefgcolor}{black} \colorlet{notebgcolor}{colorThree!20} } \usecolorstyle{CustomStyle}\definecolorstyle接受两个参数第一个定义基础颜色colorOne/Two/Three第二个通过\colorlet将各元素背景、标题、块标题、块正文、内嵌块、注释映射到这些基础色。理解这套颜色语义层是 tikzposter 品牌化的核心。仓库模板中提供了同样的 CustomStyle 示例默认被注释取消注释即可启用。4.5 Block 放置与尺寸控制% Full-width block \block{Title}{Content} % Specify width \block[width0.8\linewidth]{Title}{Content} % Position manually \block[x10, y50, width30]{Title}{Content} % Inner blocks (nested, different styling) \block{Outer Title}{ \innerblock{Inner Title}{ Highlighted content } } % Note blocks (for emphasis) \note[width0.4\linewidth]{ Important note text }tikzposter 的 block 既可以按默认流式排列columns 内自动布局也可以通过x/y坐标绝对定位还支持\innerblock嵌套块不同样式与\note强调性注释块两类特殊块为版面设计提供了极大自由度。4.6 高级特性% QR codes with tikzposter styling \block{Scan for More}{ \begin{center} \qrcode[height5cm]{https://github.com/project}\\ \vspace{0.5cm} Visit our GitHub repository \end{center} } % Multi-column within block \block{Results}{ \begin{tabular}{cc} \includegraphics[width0.45\linewidth]{fig1.pdf} \includegraphics[width0.45\linewidth]{fig2.pdf} \end{tabular} } % Custom TikZ graphics \block{Methodology}{ \begin{tikzpicture} \node[draw, rectangle, fillblue!20] (A) {Step 1}; \node[draw, rectangle, fillgreen!20, rightof A] (B) {Step 2}; \draw[-, thick] (A) -- (B); \end{tikzpicture} }注意上例中的\qrcode需要加载qrcode宏包rightof A定位语法需要加载\usetikzlibrary{positioning}。QR 码已成为学术海报标配——仓库模板在页脚或专属 block 中放置二维码用于引导观众获取全文、代码与数据。五、baposter结构化多栏自动布局专家5.1 核心定位与优劣势baposterBox Area Poster采用基于 box 的布局系统具备自动定位与间距管理能力特别擅长构建结构化、专业的多栏海报。优势自动布局智能的 box 定位与间距专业默认值开箱即用的整洁外观多栏优势一流的基于列布局页眉/页脚 box便于机构品牌化一致间距自动的垂直与水平对齐印刷就绪优秀的 CMYK 支持。劣势灵活性较低box 系统有一定约束主题较少内置主题选项有限学习曲线独特语法需要时间掌握开发不活跃社区规模相对较小。5.2 基础模板\documentclass[a0paper,portrait]{baposter} \usepackage{graphicx} \usepackage{multicol} \begin{document} \begin{poster}{ % Options gridfalse, columns3, colspacing1em, bgColorOnewhite, bgColorTwowhite, borderColorblue!50, headerColorOneblue!80, headerColorTwoblue!70, headerFontColorwhite, boxColorOnewhite, boxColorTwoblue!10, textborderroundedleft, eyecatchertrue, headerborderopen, headerheight0.12\textheight, headershaperoundedright, headershadeplain, headerfont\Large\sf\bf, linewidth2pt } % Eye Catcher (Logo) { \includegraphics[height6em]{logo.pdf} } % Title { Your Research Title } % Authors { Author Names\\ Institution Name } % University Logo { \includegraphics[height6em]{university-logo.pdf} } % First column boxes \headerbox{Introduction}{nameintro,column0,row0}{ Your introduction text here... } \headerbox{Methods}{namemethods,column0,belowintro}{ Your methods text here... } % Second column boxes \headerbox{Results}{nameresults,column1,row0,span2}{ Your results here... \includegraphics[width0.9\linewidth]{results.pdf} } \headerbox{Analysis}{nameanalysis,column1,belowresults}{ Analysis details... } \headerbox{Validation}{namevalidation,column2,belowresults}{ Validation results... } % Bottom spanning box \headerbox{Conclusions}{nameconclusions,column0,span3,abovebottom}{ Your conclusions here... } \end{poster} \end{document}baposter 的\begin{poster}{...}环境以键值对列表配置整张海报颜色bgColorOne/Two、headerColorOne/Two、boxColorOne/Two、边框borderColor、linewidth、页眉形状headershape、headershade、headerborder、文本边框样式textborder以及eyecatcherLogo 吸引区开关。其后依次跟 4 个花括号分组分别对应左 Logo、标题、作者/单位、右 Logo四段页眉内容这一键值配置 四段页眉的结构是 baposter 区别于另外两个宏包的标志性语法。内容部分全部由\headerbox{标题}{定位参数}{内容}构成通过name、column、row、below、above、span、aligned等参数精确描述 box 之间的相对关系。5.3 Box 定位语法% Position by column and row \headerbox{Title}{namebox1, column0, row0}{Content} % Position relative to other boxes \headerbox{Title}{namebox2, column0, belowbox1}{Content} % Above another box \headerbox{Title}{namebox3, column1, abovebottom}{Content} % Span multiple columns \headerbox{Title}{namebox4, column0, span2, row0}{Content} % Between two boxes vertically \headerbox{Title}{namebox5, column0, belowbox1, abovebox3}{Content} % Aligned with another box \headerbox{Title}{namebox6, column1, alignedbox1}{Content}baposter 的定位模型可以概括为三种模式网格坐标columnrow、相对锚定below/above引用其他 box 的 name、跨度控制span让一个 box 跨越多列。abovebottom是一种特殊锚定表示贴合海报底部。仓库中的 baposter_template.tex 是这一模型的实际应用主结果框span2跨两列展示大图结论框abovebottom贴合底部并通过\begin{multicols}{2}在单个 box 内部实现双栏文本。5.4 完整样式选项参考\begin{poster}{ % Grid and layout gridfalse, % Show layout grid (debug) columns3, % Number of columns colspacing1em, % Space between columns % Background backgroundplain, % plain, shadetb, shadelr, user bgColorOnewhite, bgColorTwolightgray, % Borders borderColorblue!50, linewidth2pt, % Header headerColorOneblue!80, headerColorTwoblue!70, headerFontColorwhite, headerheight0.12\textheight, headershaperoundedright, % rectangle, rounded, roundedright, roundedleft headershadeplain, % plain, shadetb, shadelr headerborderopen, % open, closed % Boxes boxColorOnewhite, boxColorTwoblue!10, boxshadeplain, % plain, shadetb, shadelr textborderroundedleft, % none, rectangle, rounded, roundedleft, roundedright % Eye catcher eyecatchertrue }常用配色方案% Professional blue \begin{poster}{ headerColorOneblue!80, headerColorTwoblue!70, boxColorTwoblue!10, borderColorblue!50 } % Academic green \begin{poster}{ headerColorOnegreen!70!black, headerColorTwogreen!60!black, boxColorTwogreen!10, borderColorgreen!50 } % Corporate gray \begin{poster}{ headerColorOnegray!60, headerColorTwogray!50, boxColorTwogray!10, borderColorgray!40 }六、选型决策指南综合三者的特性可依据具体场景做出如下选择选择 beamerposter当已经熟悉 Beamer需要匹配机构的 Beamer 主题体系偏好传统学术美学需要大量主题选项需要快速编译面向保守的学术会议制作海报。选择 tikzposter当想要现代、多彩的设计计划用 TikZ 创建自定义图形重视美学灵活性想要开箱即用的专业主题不介意稍长的编译时间面向设计导向或面向公众的活动展示。选择 baposter当需要结构化的多栏布局想要自动 box 定位偏好简洁专业的默认外观需要精确控制 box 间关系海报包含大量小节重视一致的间距与对齐。一个实用的经验法则难以抉择时现代学术会议从 tikzposter 入手传统学术场合从 beamerposter 入手。七、宏包间迁移对照三种宏包的块语法高度相似迁移时主要工作是改写块环境名称与补充定位参数从 beamerposter 到 tikzposter% beamerposter \begin{block}{Title} Content \end{block} % tikzposter equivalent \block{Title}{ Content }从 beamerposter 到 baposter% beamerposter \begin{block}{Introduction} Content \end{block} % baposter equivalent \headerbox{Introduction}{nameintro, column0, row0}{ Content }从 tikzposter 到 baposter% tikzposter \block{Methods}{ Content } % baposter equivalent \headerbox{Methods}{namemethods, column0, row0}{ Content }八、编译优化与常见问题8.1 加速编译# Use draft mode for initial edits \documentclass[draft]{tikzposter} # Compile with faster engines when possible pdflatex -interactionnonstopmode poster.tex # For tikzposter, use externalization to cache TikZ graphics \usetikzlibrary{external} \tikzexternalize\tikzexternalize会将 TikZ 图形缓存为独立 PDF后续编译直接复用缓存可显著缩短 tikzposter 的迭代时间。-interactionnonstopmode让编译在遇到警告时不中断便于批处理。8.2 内存问题% Increase TeX memory for large posters % Add to poster preamble: \pdfminorversion7 \pdfobjcompresslevel28.3 字体嵌入印刷必需# Ensure fonts are embedded (required for printing) pdflatex -dEmbedAllFontstrue poster.tex # Check font embedding pdffonts poster.pdfpdffonts输出中emb列全部为yes才代表字体已嵌入这是印刷厂接收文件的前置条件。仓库的 review_poster.sh 脚本的第 4 项检查Font Embedding正是自动完成这一验证——它会提取前 20 个字体并标记未嵌入项。8.4 交付前自动化质量检查本技能仓库提供了一键式 PDF 质检脚本编译完成后即可运行./scripts/review_poster.sh poster.pdf从源码review_poster.sh可以看出它依次执行 8 项检查页面尺寸调用pdfinfo提取尺寸自动识别 A0 竖版/横版、A1 竖版、36×48 英寸等常见规格页数海报必须为单页文件大小超过 50MB 提示压缩并给出gs压缩命令低于 1MB 提示检查图像质量字体嵌入通过pdffonts检测未嵌入字体图像质量pdfimages -list列出所有图像提示核对 300 DPI 印刷要求人工目检清单输出版面、排版、视觉元素、内容四组核对项推荐后续步骤25% 缩印测试、数字端检查、校对建议汇总输出。对应测试见 tests/latex-posters/test_scripts.py其中验证了无参数调用应报 Usage 并退出码 1、缺失文件时应报错、缺少 poppler 工具时脚本降级运行而非中止每个编号小节仍会执行到 Quality Check Complete。这说明该脚本被设计为报告工具而非硬性门禁——个别检查项不可用时其余检查与人工清单仍应完整呈现。九、混合方案取各家之长三个宏包并非互斥可以按需混用beamerposter TikZ 图形\documentclass[final]{beamer} \usepackage[sizea0]{beamerposter} \usepackage{tikz} \begin{block}{Flowchart} \begin{tikzpicture} % Custom TikZ graphics within beamerposter \end{tikzpicture} \end{block}tikzposter Beamer 配色\documentclass{tikzposter} % Import specific Beamer color definitions \definecolor{beamerblue}{RGB}{0,51,102} \colorlet{blocktitlebgcolor}{beamerblue}第一种方案解决 beamerposter 图形集成标准但不够炫的短板第二种方案让 tikzposter 快速复用机构已有的 Beamer 品牌色。十、任何海报都推荐的基础宏包组合无论选用哪个海报宏包以下基础宏包都是值得统一加载的% Essential packages for any poster \usepackage{graphicx} % Images \usepackage{amsmath,amssymb} % Math symbols \usepackage{booktabs} % Professional tables \usepackage{multicol} % Multiple columns in text \usepackage{qrcode} % QR codes \usepackage{hyperref} % Hyperlinks \usepackage{caption} % Caption customization \usepackage{subcaption} % Subfigures这些宏包在仓库的三个模板beamerposter_template.tex、tikzposter_template.tex、baposter_template.tex中均已预置qrcode用于生成扫码获取全文的补充材料入口multicol用于在 block 内部排版多栏文字。十一、性能对比参考包编译时间A0PDF 体积内存占用beamerposter约 5-10 秒2-5 MB低tikzposter约 15-30 秒5-15 MB中-高baposter约 8-15 秒3-8 MB中注以上为含 5 张图、典型会议内容的测试数据。tikzposter 的编译开销与 PDF 体积增长主要来自 TikZ 引擎的处理与绘图元素可通过第八节的\tikzexternalize缓存策略缓解。结语三个宏包在不同场景下各有优势beamerposter适合传统学术场合与 Beamer 用户tikzposter适合现代、视觉冲击力强的展示baposter适合结构化、多小节的专业海报。选型应基于自身需求、审美偏好与时间约束。在本仓库中这一对比文档与 SKILL.md海报创作六阶段工作流与 AI 视觉元素硬性规范、references/README.md快速上手与排障、三个可直接定制的模板以及 review_poster.sh交付前质检共同构成了一套从设计到印刷的完整闭环。建议的落地路径是按本文选定宏包 → 复制对应assets/模板 → 按 SKILL.md 的硬性规范正文 24pt、总字数 300-800、图形 3-4 元素上限等填充内容 →pdflatex编译 →./scripts/review_poster.sh poster.pdf自动质检 → 25% 缩印测试后送印。【免费下载链接】scientific-agent-skillsTurn any AI agent into an AI Scientist. The #1 Agent Skills library for science, used by 190,000 scientists worldwide. 165 ready-to-use validated skills plus 100 scientific databases covering biology, chemistry, medicine, and drug discovery. Compatible with Cursor, Claude Code, Codex, Pi, Antigravity, and the open Agent Skills standard.项目地址: https://gitcode.com/GitHub_Trending/cl/scientific-agent-skills创作声明:本文部分内容由AI辅助生成(AIGC),仅供参考
返回列表