Skip to content

Commit 28e6d20

Browse files
committed
Update Readme v.1
1 parent 168ed9f commit 28e6d20

File tree

1 file changed

+35
-10
lines changed

1 file changed

+35
-10
lines changed

Slide/README.md

Lines changed: 35 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
1-
# reveal.js [![Build Status](https://travis-ci.org/hakimel/reveal.js.svg?branch=master)](https://travis-ci.org/hakimel/reveal.js)
1+
# An Introduction to Linux and its Commands
2+
3+
This presentation has been made by the executives of CSEA (2013-17 batch). The contributors are [Piyush Bhopalka](http://github.com/pbhopalka), [Simsarul Haq](http://github.com/simsarulhaqv), [Prabhav Adhikari](http://github.com/prabhavad), [Aashish Satyajith](http://github.com/aashishsatya), [Shrimadhav U K](http://github.com/spechide).
4+
5+
# Basic Agenda of the Presentation
6+
7+
- Introduction to FOSS (Free Open Source Software)
8+
- Basic Linux Commands
9+
- Some Linux Utilities
10+
- More on Basic Linux
11+
- Introduction to Vim Editor
12+
- Shell Script Exercise
13+
- Introduction to File Systems
14+
- Some more Linux Utilities
15+
16+
Each topic has a separate HTML page created so that a user can open only the required page and that helps in the navigation too.
17+
18+
This presentation uses the open source HTML framework [reveal.js](https://github.com/hakimel/reveal.js). Please read through it through build an interactive presentation using the framework.
19+
20+
# Contact
21+
22+
For making any changes, please make a pull request and we will consider your change.
23+
24+
# Acknowledgement
25+
26+
We would like to acknowledge the faculty members of NIT Calicut for promoting us to conduct this presentation. We hope this presentation is useful even later for upcoming batches and can act as a reference to those who would like to refresh their rusty knowledge on Linux.
227

328
A framework for easily creating beautiful presentations using HTML. [Check out the live demo](http://lab.hakim.se/reveal-js/).
429

@@ -486,15 +511,15 @@ You can also use different in and out transitions for the same slide:
486511

487512
```html
488513
<section data-transition="slide">
489-
The train goes on …
514+
The train goes on …
490515
</section>
491-
<section data-transition="slide">
492-
and on …
516+
<section data-transition="slide">
517+
and on …
493518
</section>
494-
<section data-transition="slide-in fade-out">
519+
<section data-transition="slide-in fade-out">
495520
and stops.
496521
</section>
497-
<section data-transition="fade-in slide-out">
522+
<section data-transition="fade-in slide-out">
498523
(Passengers entering and leaving)
499524
</section>
500525
<section data-transition="slide">
@@ -796,7 +821,7 @@ The multiplex plugin needs the following 3 things to operate:
796821
More details:
797822

798823
#### Master presentation
799-
Served from a static file server accessible (preferably) only to the presenter. This need only be on your (the presenter's) computer. (It's safer to run the master presentation from your own computer, so if the venue's Internet goes down it doesn't stop the show.) An example would be to execute the following commands in the directory of your master presentation:
824+
Served from a static file server accessible (preferably) only to the presenter. This need only be on your (the presenter's) computer. (It's safer to run the master presentation from your own computer, so if the venue's Internet goes down it doesn't stop the show.) An example would be to execute the following commands in the directory of your master presentation:
800825

801826
1. ```npm install node-static```
802827
2. ```static```
@@ -869,7 +894,7 @@ You are very welcome to point your presentations at the Socket.io server running
869894

870895
##### socket.io server as file static server
871896

872-
The socket.io server can play the role of static file server for your client presentation, as in the example at [http://revealjs.jit.su](http://revealjs.jit.su). (Open [http://revealjs.jit.su](http://revealjs.jit.su) in two browsers. Navigate through the slides on one, and the other will update to match.)
897+
The socket.io server can play the role of static file server for your client presentation, as in the example at [http://revealjs.jit.su](http://revealjs.jit.su). (Open [http://revealjs.jit.su](http://revealjs.jit.su) in two browsers. Navigate through the slides on one, and the other will update to match.)
873898

874899
Example configuration:
875900
```javascript
@@ -966,7 +991,7 @@ Reveal.initialize({
966991
967992
If you want to display math equations in your presentation you can easily do so by including this plugin. The plugin is a very thin wrapper around the [MathJax](http://www.mathjax.org/) library. To use it you'll need to include it as a reveal.js dependency, [find our more about dependencies here](#dependencies).
968993
969-
The plugin defaults to using [LaTeX](http://en.wikipedia.org/wiki/LaTeX) but that can be adjusted through the ```math``` configuration object. Note that MathJax is loaded from a remote server. If you want to use it offline you'll need to download a copy of the library and adjust the ```mathjax``` configuration value.
994+
The plugin defaults to using [LaTeX](http://en.wikipedia.org/wiki/LaTeX) but that can be adjusted through the ```math``` configuration object. Note that MathJax is loaded from a remote server. If you want to use it offline you'll need to download a copy of the library and adjust the ```mathjax``` configuration value.
970995
971996
Below is an example of how the plugin can be configured. If you don't intend to change these values you do not need to include the ```math``` config object at all.
972997
@@ -979,7 +1004,7 @@ Reveal.initialize({
9791004
mathjax: 'http://cdn.mathjax.org/mathjax/latest/MathJax.js',
9801005
config: 'TeX-AMS_HTML-full' // See http://docs.mathjax.org/en/latest/config-files.html
9811006
},
982-
1007+
9831008
dependencies: [
9841009
{ src: 'plugin/math/math.js', async: true }
9851010
]

0 commit comments

Comments
 (0)