Home > Article > System Tutorial > How to display slides in Linux terminal
Presentations often feel boring. Therefore, some people will add elements such as animation, comics or memes to add some humor and style to break up the monotonous atmosphere.
If you need to add some unique flair to your college or company presentations, how about considering using a Linux terminal? Imagine how cool this would be!
Present: Demonstrate in Linux terminal
You can do a lot of fun and interesting things in the terminal. Creating and presenting slideshows is just one of them.
This Python-based app called Present lets you create Markdown and YML-based slides that you can give talks at your university or company and entertain people in true geeky style.
Function of Present
You can use Present to do the following:
PgUp
/Down
keysInstalling Present on Linux
Present is a Python-based tool that you can install using PIP. You should make sure to install Pip on Ubuntu with this command:
sudo apt install python3-pip
If you are using another distribution, please check your package manager to install PIP3.
After installing PIP, you can install Present globally this way:
sudo pip3 install present
You can also install just for the current user, but you must also add ~/.local/bin
to your PATH
environment variable.
Use Present in the Linux terminal to create and present slideshows
Since Present uses Markdown syntax, you should use it to create your own slideshows. Using a Markdown editor can help here.
Present requires a Markdown file to read and play the slideshow. You can download this sample slideshow, but you will need to download the embedded image separately and place it inside the images folder.
—
в файлах Markdown для разделения слайдов. ![RC] (images/name.png)
.
.
, чтобы добавить слайд-шоу с эффектами. q
для выхода из презентации и используйте стрелки влево/вправо или клавиши PgUp
/Вниз
для управления слайд-шоу. Имейте в виду, что изменение размера окна терминала во время демонстрации может все испортить, как и нажатие Enter.
Подведем итог
Если вы знакомы с Markdown и терминалом, использование Present не составит для вас труда.
Его нельзя сравнивать с обычными слайд-шоу, созданными с помощью Impress, MS Office и т. д., но для периодического использования это отличный инструмент. Если вы специализируетесь в области компьютерных наук/сетей, разработчика или системного администратора, вашим коллегам это обязательно покажется интересным.
The above is the detailed content of How to display slides in Linux terminal. For more information, please follow other related articles on the PHP Chinese website!