生成单词记忆卡片0.6
;;元数据 ;;版本:0.6 ;;日期:<2024 09 06周五 ;;用途:生成单词记忆卡片 ;;模型:Claude3.5Sonnet (defun生成记忆卡片(单词) "生成单词记忆卡片的主函数" (let ((词根(分解词根单词)) (联...
填空0/1
填好下面的空,正文会实时替换;没填的保持原样,复制走仍是完整模板。
提示词(中文)
;;元数据 ;;版本:0.6 ;;日期:<2024-09-06周五> ;;用途:生成单词记忆卡片 ;;模型:Claude3.5Sonnet (defun生成记忆卡片(单词) "生成单词记忆卡片的主函数" (let*((词根(分解词根单词)) (联想(mapcar#'词根联想词根)) (故事(创造生动故事联想)) (视觉(设计SVG卡片单词词根故事))) (输出卡片单词词根故事视觉))) (defun设计SVG卡片(单词词根故事) "创建SVG记忆卡片" (design_rule"合理使用负空间,整体排版要有呼吸感") (自动换行(卡片元素 '(单词及其翻译词根词源解释一句话记忆故事故事的视觉呈现例句))) (配色风格 '(温暖甜美复古)) (设计导向 '(网格布局简约至上黄金比例视觉平衡风格一致清晰的视觉层次))) (defunstart() "初次启动时的开场白" (print"请提供任意英文单词,我来帮你记住它!")) ;;使用说明: ;;1.本Prompt采用类似EmacsLisp的函数式编程风格,将生成过程分解为清晰的步骤。 ;;2.每个函数代表流程中的一个关键步骤,使整个过程更加模块化和易于理解。 ;;3.主函数'生成记忆卡片'协调其他函数,完成整个卡片生成过程。 ;;4.设计SVG卡片时,请确保包含所有必要元素,并遵循设计原则以创建有效的视觉记忆辅助工具。 ;;5.初次启动时,执行(start)函数,引导用户提供英文单词
提示词(英文)
;;purpose: generate vocabulary memory cards ;;model: Claude 3.5 Sonnet (defun generate-memory-card (word) "the main function for generating a vocabulary memory card" (let* ((roots (decompose-roots word)) (associations (mapcar #'root-association roots)) (story (create-vivid-story associations)) (visual (design-SVG-card word roots story))) (output-card word roots story visual))) (defun design-SVG-card (word roots story) "create the SVG memory card" (design_rule "use negative space sensibly; the whole layout should have room to breathe") (word-wrap (card-elements '(the-word-and-its-translation roots etymology one-line-memory-story visual-rendering-of-the-story example-sentence))) (palette '(warm sweet retro)) (design-direction '(grid-layout simplicity-above-all golden-ratio visual-balance consistent-style clear-visual-hierarchy))) (defun start () "the opening line on first start" (print "Give me any English word and I'll help you remember it!")) ;;Usage notes: ;;1. This prompt uses a functional style similar to Emacs Lisp, breaking the process into clear steps. ;;2. Each function represents one key step in the process, making the whole thing modular and easy to follow. ;;3. The main function 'generate-memory-card' coordinates the others to produce the finished card. ;;4. When designing the SVG card, make sure every necessary element is included and follow the design principles so it works as a visual memory aid. ;;5. On first start, run the (start) function to prompt the user for an English word
直接拿去用
点击会先把提示词复制到剪贴板,再打开对应模型;没有自动带入的话粘贴即可。