← 返回
未分类

MS-PPT-Style: Morgan Stanley PPT Generator

Morgan Stanley classic PPT style generator for OpenClaw/WorkBuddy/QClaw. Use when user needs to create professional financial report style presentations with...
Morgan Stanley经典PPT风格生成器,适用于OpenClaw/WorkBuddy/QClaw。当用户需要创建专业财务报告风格的演示文稿时使用...
yjkj999999
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 490
下载
💾 1
安装
1
版本
#bilingual#finance#latest#morgan-stanley#pptx#presentation

概述

MS-PPT-Style Skill

Overview

摩根士丹利经典款PPT风格生成器 - 一键生成专业金融报告风格PPT。

Morgan Stanley classic PPT style generator - one-click professional financial report style presentation.

Features

  • 经典配色: 摩根士丹利蓝(#003087) + 金色(#C9A227)
  • 渐变封面: 极简深色渐变背景,居中双语标题
  • 全双语内容: 所有页面中英对照
  • 专业图表: 瀑布图、玫瑰图、雷达图、散点矩阵、堆叠图
  • 金融级排版: 干净利落的投行报告风格

Installation

# 安装依赖
npm install pptxgenjs

# 使用此Skill生成PPT

Usage

基础用法

const pptxgen = require("pptxgenjs");
let pres = new pptxgen();

// 定义摩根士丹利色彩
const MS_BLUE = "003087";
const MS_GOLD = "C9A227";
const MS_DARK = "1A1A2E";
const MS_WHITE = "FFFFFF";
const MS_GRAY = "6B7280";
const MS_LIGHT_GRAY = "F3F4F6";

// ===== 封面 =====
let slide1 = pres.addSlide();

// 渐变背景
slide1.addShape(pres.shapes.RECTANGLE, {
  x: 0, y: 0, w: 10, h: 5.625,
  fill: { color: "0A1628" }
});
slide1.addShape(pres.shapes.RECTANGLE, {
  x: 0, y: 0, w: 10, h: 5.625,
  fill: { color: "1A2744", transparency: 60 }
});

// 金色顶线
slide1.addShape(pres.shapes.RECTANGLE, {
  x: 0, y: 0, w: 10, h: 0.04,
  fill: { color: MS_GOLD }
});

// 居中双语标题
slide1.addText("Title Here", {
  x: 0.5, y: 1.8, w: 9, h: 0.8,
  fontSize: 46, fontFace: "Arial", color: MS_WHITE,
  bold: true, align: "center"
});
slide1.addText("中文标题", {
  x: 0.5, y: 2.7, w: 9, h: 0.5,
  fontSize: 26, fontFace: "Arial", color: MS_GOLD,
  align: "center"
});

// 金色装饰线
slide1.addShape(pres.shapes.RECTANGLE, {
  x: 4.25, y: 3.4, w: 1.5, h: 0.02,
  fill: { color: MS_GOLD }
});

// 底部信息
slide1.addText("Research Report | 研究报告", {
  x: 0.5, y: 4.8, w: 9, h: 0.25,
  fontSize: 10, fontFace: "Arial", color: "9CA3AF",
  align: "center"
});

// ===== 内容页模板 =====
let slide2 = pres.addSlide();
slide2.background = { color: MS_WHITE };

// 蓝色标题栏
slide2.addShape(pres.shapes.RECTANGLE, {
  x: 0, y: 0, w: 10, h: 0.8,
  fill: { color: MS_BLUE }
});

slide2.addText("ENGLISH TITLE  中文标题", {
  x: 0.5, y: 0.18, w: 8, h: 0.45,
  fontSize: 22, fontFace: "Arial", color: MS_WHITE,
  bold: true
});

// 内容区域...

// 保存
pres.writeFile({ fileName: "output.pptx" });

图表模板

瀑布图

const items = [
  { name: "Item1", value: 100, color: "003087" },
  { name: "Item2", value: 200, color: "1E5AA8" }
];
// 使用矩形堆叠模拟瀑布效果

玫瑰图 (Pie Chart)

slide.addChart(pres.charts.PIE, [{
  name: "Category",
  labels: ["A", "B"],
  values: [40, 60]
}], {
  chartColors: ["003087", "C9A227"],
  showPercent: true,
  showLegend: true,
  legendPos: "r"
});

雷达图

slide.addChart(pres.charts.RADAR, [
  {
    name: "Series1",
    labels: ["Dim1", "Dim2", "Dim3"],
    values: [80, 90, 70]
  }
], {
  chartColors: ["003087"],
  lineSize: 2,
  radarStyle: "filled"
});

散点矩阵 (手动绘制)

// 绘制坐标轴
slide.addShape(pres.shapes.RECTANGLE, {
  x: 1.0, y: 1.3, w: 0.02, h: 4.0,
  fill: { color: "374151" }
});
// 绘制气泡...

Color Reference

名称色值用途
------------------
MS_BLUE#003087标题栏、强调
MS_LIGHT_BLUE#1E5AA8次要强调
MS_GOLD#C9A227装饰线、点缀
MS_DARK#1A1A2E深色背景
MS_WHITE#FFFFFF正文背景
MS_GRAY#6B7280次要文字
MS_LIGHT_GRAY#F3F4F6卡片背景

Chart Colors

const MS_CHART_COLORS = [
  "003087", "1E5AA8", "3B82F6", "60A5FA",
  "93C5FD", "C9A227", "D4AF37", "E5E7EB"
];

Typography

用途字体字号
------------------
封面标题Arial46pt
封面副标题Arial26pt
页面标题Arial22pt
正文英文Arial12pt
正文中文Arial10pt
注释Arial9pt

Dependencies

  • pptxgenjs >= 3.0.0

License

MIT

Author

QClaw (小龙虾)

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-09 04:06 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

DBS 丹纳赫业务系统

yjkj999999
丹纳赫业务系统(DBS)核心技能体系。基于DBS三大支柱——精益、增长、领导力,提炼出8项可操作、可评估的核心技能,配合4P框架和精益方法论。整合丹纳赫400余次战略并购与DBS结合的方法论,覆盖并购全流程。
★ 0 📥 345

上市公司董事会秘书专家系统

yjkj999999
上市公司董秘全流程专家:信息披露合规、投资者关系、公司治理(三会运作)、资本运作。支持沪深北交所+港交所。2026最新监管规则已更新。
★ 1 📥 383

Cgma Publish

yjkj999999
基于AICPA与CIMA《全球管理会计原则(GMAP)》及CGMA 2019能力框架,融合24项金融技能,提供管理会计咨询、战略决策、绩效管理与全球领导力指导。整合技能包括财务分析等。
★ 1 📥 435