GithubHelp home page GithubHelp logo

yaoshanliang / xjtlu-beamer-template Goto Github PK

View Code? Open in Web Editor NEW
31.0 1.0 8.0 1.55 MB

Latex template for presentations

Python 0.50% TeX 99.50%
latex beamer xjtlu beamer-template latex-template template

xjtlu-beamer-template's Introduction

XJTLU Beamer Template


made-with-latex GitHub tag (latest by date) GitHub issues GitHub stars GitHub forks Open Source? Yes! Overleaf badge

What is it?For Whom?UsageTips

What is it?

Thanks to Template Beamer UFC. This template is modified based on that project.

This project aims to create a template for presentation for the Xi’an Jiaotong-Liverpool University (XJTLU). It was created a class called xjtlu_format.cls with a set of environments and commands related to the document. This template is not an official document from the XJTLU. However, this template can be used to create classes, presentations, short courses, etc.

For Whom?

This template can be useful for the XJTLU professors and students.

  • Professors: for creating classes and presentations

  • Students: for assignments and presentations

  • Others: for works and presentations

Usage

Copy or download the project.

Tips

Some tips for using this template

Blocks

  • Default Block
    \begin{block}{Default Block}
        Body of default block.
    \end{block}
  • Alert Block
    \begin{alertblock}{Alert Block}
        Body of alert block.
    \end{alertblock}
  • Example Block
    \begin{exampleblock}{Example Block}
        Body of example block.
    \end{exampleblock}

Texts

  • Example text
 \example{Text Example}
  • Emphasis text
 \emph{Text emphasis}

Boxes

  • Simple Box
\simplebox{testando o simple box}
  • Alert Box
\alertbox{testando o alert box}
  • Success Box
\successbox{testando o success box}

Codes

It is possible to insert codes in this presentation. This template uses two packages for algorithms: algorithm2e and listings.

The following example shows how to create a pseudocode:

\begin{algorithm}[H]
    \SetAlgoLined #includes indentation
    \LinesNumbered #includes lines number
    \SetKwInOut{Input}{input}
    \SetKwInOut{Output}{output}
    \Input{write the input}
    \Output{write the output}
    \KwData{write the data}
    \KwResult{Write the result}
    initialization\;
    \While{While condition}
    {
        instructions\;
        \eIf{condition}{
           instructions1\;
           instructions2\;
           }{
           instructions3\;
        }
    } 
    \caption{How to write algorithms}
\end{algorithm}

The following example shows how to insert a code that is in the project files:

\begin{frame}{Including Codes}
    \lstset{language=Python}
    \lstinputlisting[language=Python]{path_of_python_code.py}
\end{frame}

The following example shows how to insert a figure:

\begin{figure}
    \centering
    \caption{Caption of the Figure}
    \includegraphics[scale=1]{path_of_the_figure}
    \source{Source of the Figure}
    \label{fig:figlabel}
\end{figure}

The following example shows how to insert a multi-columns:

\begin{columns}{}
    \begin{column}{0.5\textwidth}
        \justify
        Text of the left side!
    \end{column}
    \begin{column}{0.5\textwidth}
        \justify
        Text of the right side!
    \end{column}
\end{columns}    

Custom Commands

This template has some custom commands that are described below:

To put the department name

\department{Department Name}

To put the email

\email{user@domain}

Examples

xjtlu-beamer-template's People

Contributors

yaoshanliang avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.