Linux 的命令行演示工具?

Ash*_*coN 10 presentation command-line

几天后我将做一个关于 Linux 的演讲。
所以我想以时尚的方式展示 Linux。
所以我想要任何演示工具。我听说过Mdp

几张截图

现在我想自己做。
如何创建这种类型的幻灯片?

Oli*_*Oli 15

在 MDP 中,您仅限于控制台可以执行的操作。控制台文本等宽且无法逐个字符地更改其大小。这就是重点。不过,您确实有几个选择可以使其成为更好的演示文稿:

  1. 增加终端中的全局字体大小(在 Konsole 中为Control+ +)。这使得远距离阅读更容易,但会限制屏幕上可以容纳的行数。如果字体大小对于内容来说太大,MDP 会出错。

  2. 使用 ASCII 艺术!figlet对此非常有用,但您必须使用降价代码格式来保留演示文件中它周围的间距。

     __  __         _____ _ _   _      _ 
    |  \/  |_   _  |_   _(_) |_| | ___| |
    | |\/| | | | |   | | | | __| |/ _ \ |
    | |  | | |_| |   | | | | |_| |  __/_|
    |_|  |_|\__, |   |_| |_|\__|_|\___(_)
            |___/                        
    
    Run Code Online (Sandbox Code Playgroud)

最终它会是两者的结合。

mdp看起来确实很有趣,但请确保在进行演示之前在演示硬件上对其进行测试- 您不想成为演示不起作用的木偶。制作屏幕截图 PDF 备份可能是有意义的。


αғs*_*нιη 14

TOIlet使用由较小字符组成的大字符打印文本。它在许多方面FIGlet与附加功能类似,例如 Unicode 处理、彩色字体、过滤器和各种导出格式。

安装字体:

sudo apt-get install toilet toilet-fonts
Run Code Online (Sandbox Code Playgroud)

截屏:

在此处输入图片说明


男厕所

-f, --font <name>
    Use the given font instead of the default value. Fonts are .flf or .tlf files 
    stored in the '/usr/share/figlet' directory. Fonts are looked first in the font directory, 
    then in the current directory.
Run Code Online (Sandbox Code Playgroud)

可用过滤器:

$ toilet  --filter list

"crop": crop unused blanks
"gay": add a rainbow colour effect
"metal": add a metallic colour effect
"flip": flip horizontally
"flop": flip vertically
"180": rotate 180 degrees
"left": rotate 90 degrees counterclockwise
"right": rotate 90 degrees clockwise
"border": surround text with a border
Run Code Online (Sandbox Code Playgroud)