Papeeria logo

  • Pricing Plans
  • Terms of Service
  • Support/Feedback/Contacts

online latex presentation

  I found Papeeria very useful in the academic environment … Papeeria provides a solid and universal framework for worries-free collaborative editing of LaTeX documents…

online latex presentation

  This great application made lots of thesis and term work papers of our school significantly nicer…

online latex presentation

  Works fine in terms of its main purpose…I was able to write technical articles and no problem occurred.

Follow Papeeria:

LaTeX and Markdown online

online latex presentation

  • Plot builder
  • Collaboration
  • Reliability

Papeeria runs on all major desktop operating systems with any reasonably modern browser and Papeeria Mobile runs on major mobile devices.

Full TeX Live environment is already installed and ready to run. The only required software is a web browser.

Feature-rich editor with real-time collaboration, discussions in the margin, autocompletion, spellchecker, instant math previewer and other goodies.

online latex presentation

LaTeX Beamer

A simple guide to Beamer– Step by Step

' src=

Learn about creating LaTeX presentations using beamer in short lessons with full code examples. A comprehensive guide to basic and advanced features.

These tutorials, provide a hands-on introduction to Beamer. You will see, the usage is very simple. Even if you have only used Microsoft PowerPoint before, you can learn LaTeX Beamer in no time.

In the following lessons, we will introduce you to all the basic features of LaTeX Beamer, one feature at a time. As a beginner, you should either start with the first lesson or, if you just want a very brief introduction, try the interactive  quick start guide . While the beginners course will enable you to typeset your presentations, the blog posts will introduce you to very powerful features, which are a bit harder to grasp, but can boost your productivity.

  • Lesson 0 – Installation
  • Lesson 1 – Your First LaTeX Presentation-Title Page
  • Lesson 2 – Add and Position a Logo in Beamer
  • Lesson 3 – Create a Table of Contents in Beamer
  • Lesson 4 – Eight Beamer Environments you Should be Familiar With!
  • Lesson 5 – Lists in Beamer – Complete Guide
  • Lesson 6 – Create and Customize Columns in Beamer
  • Lesson 7 – Your Guide to Beamer Blocks
  • Lesson 8 – Beamer Themes — Full List
  • Lesson 9 – Your Beamer Guide to Text Formatting
  • Lesson 10 – Creating Overlays in Beamer
  • Lesson 11 – Insert a GIF into LaTeX Beamer — Short guide
  • Lesson 12 – Beamer Code Listing — Syntax highlighter
  • Lesson 13 – Beamer Font: Change its Size, Family and style
  • Lesson 14 – Beamer Table – Full guide with examples
  • Lesson 15 – Figures in Beamer – A detailed tutorial
  • How to make a presentation with Latex - Introduction to Beamer
  • exampleblock
  • compilation
  • beamergotobutton
  • presentation

We shall see in this article how to make a presentation with LaTeX, using the powerful class Beamer. If you want to make an outstanding “stressfree” presentation and bring your ideas or your work under a whole new light, let’s get started!!!

Installing the Beamer class

You will first need to install the package Beamer . Under Debian or Ubuntu, you can type the following command:

Once the latex-class Beamer is installed, you are definitely ready to stat your first presentation!!!

Basic presentation with Beamer

A few explanations:

means that our document is a Beamer presentation

this package enables us to use special letters (with accents, cedillas, etc). You can discard this command when the presentation is in English.

This is our outer theme (color and background). As you can imagine, there are tons of themes. You can refer to Beamer documentation for more details.

this defines the title of the presentation. As you can see, there are two titles:

  • the first one, between brackets. [Making a LaTeX presentation with Beamer] is a substitute title which appears at the bottom of the page. This is useful especially if the original title is long. Since this is anoption only, if it is not mentioned, then the original title is the one shown in the bottom of the page.
  • the second one, between braces, is the principal title of the presentation. The command

defines Nadir Soualem and Astozzia (us!) as the authors of the presentation.

defines where the presentation was held. Finally, we use

as the date.

To define the document, we use the markers

To define a slide of the presentation, we use the markers

To define a page title (frame), we mention it as follows

Introduction will be the title of the page. To define the first page, which contains details such as the title, the author, the date, etc - we use a frame in which we include the \titlepage command

To define a frame containing the layout of the presentation, we proceed as follows:

The layout is therefore mentioned at every section and subsection. You should insert \section and \subsection throughout the presentation and out of the frames:

Animations – Overlays

A good presentation is one that is dynamic and attracts the audience’s interest. Generally, we resort to a dynamic type of presentations. Alternatively stated, when we speak, we simultaneously show significant points of the talk, or hide others, or keep just the important ones. We shall see in this section how animations function in Beamer.

Item-by-item list view: the \pause command

In order to view several items of a list on the same slide, we type the following commands inside a frame:

We will thus see the items of our list, one by one.

Item-by-item list view: the \item<n-> command

An alternative way to visualize the elements of a list item by item is to use the \item<n-> command, where n is a natural number referring to the slide, beginning from which the item appears.

List item interval and isolated items: the \item<n-> and \item<p> commands

An example is worth a long speech:

\item<n-> means that the list item will appear on slides numbered n to m, whereas \item<p> means that the item will appear on slide p.

Item-by-item long list view: the [<+->] command

Sometimes the lists you want to display are long and it is not practical to use the \item<n-> command. An alternative solution is the use of the [<+->] command

Up to now, we have dealt with lists. We shall now see how to use text and slides.

Displaying and hiding text in slides: the \uncover<n->, \uncover<n-> and \uncover<p> commands

\uncover<n-> will display the text from slide n on; \uncover<n-> means the text element will appear from slide n to m. Finally, \uncover<p> means that the text will appear on slide p. Here is a case in point of a frame containing the \uncover command.

Be careful not to forget the braces after the \uncover command. The syntax is as follows:

Displaying and hiding text in slides: the \only<n->, \only<n-> and \only<p> commands

\only works like \uncover with the exception that the \only command is not as “cumbersome” on slides. Here is an example:

Here is an other example to better grasp the difference between \only and \uncover

Hide text in slides: the \invisible<n> commands

\invisible<n> makes text invisible on slide n

Another alternative: the \alt<n>{…}{…} commands

As an alternative, one can use the \alt<n>{…}{…} command on a slide. The first argument is the value on slide n. The second is for values other than n. Here is an example:

Highlighting text in red: the \alert<n>{…} command

To highlight text in red on slide n, we use the \alert<n>{…} command.

Successively highlighting list items in red: the <+-| alert@+> command

Using colors in a text on a slide: the \color<n->{…}{…}, \color<n->{…}{…} and\color<p>{…}{…} commands.

The first argument is the red, green, yellow, blue, etc … The second is the text to be colored

Creating links: the \hyperlink{…}{\beamergotobutton{…}} commands

To define internal links, we should add the following package in the preamble

Then, we should define a label pointing on the frame:

you define MY_LABEL as you please ! Finally, on the frame where the link is to be created, we proceed as follows:

There we are! We can see a button Refer to this page pointing to the frame labeled MY_LABEL .

Thus, the first argument of \hyperlink{…}{\beamergotobutton{…}} is the name of the label to be pointed at and \beamergotobutton{…} has the name of the button as an argument.

Defining blocks inside frames

For important stuff, we define blocks as follows:

As clear as onion soup !!!

Dynamic display of tables: the \pause and \onslide<n-> commands

First off, we should add the package colortbl to the preamble

To display rows dynamically, we shall use the \pause command as follows:

To display columns dynamically, we shall use the \onslide<n-> command as follows:

Writing on several columns: the \begin{columns}...\end{columns} commands

For two columns, we proceed as follows:

l,r,c refers to the position: left, right, center. The syntax is as follows:

Inserting a figure in a Beamer presentation

To insert an image or a figure, we proceed as in LaTeX by using the \includegraphics command. Here is an example:

In Beamer, we should distinguish between two types of figures:

  • PS type: .eps, .ps and pspicture type (LaTeX)
  • General type: .pdf, .png, .jpg, .jpeg You will need to compile a Beamer-class file.

Compiling a Beamer presentation

I assume that the your file is called file.tex. . There are ways to compile, depending on the type of figure you inserted. For PS-type figures, we shall use the following commands

We shall obtain the file file.pdf.

For general-type figures, we shall use the command

We shall also obtain the file file.pdf.

It goes without saying that explaining all the possibilities that Beamer offers is way too long. Have look to the official documentation, which is more exhaustive.

Have fun !!!

If you found this post or this website helpful and would like to support our work, please consider making a donation. Thank you!

Articles in the same category

  • Useful software to start LaTeX
  • Introduction au Latex
  • Introduction à  Beamer - Faire une présentation en Latex
  • How to install latex package ?
  • Comment installer un package Latex ?
  • Latex Extra
  • Variance Symbol in LaTeX
  • Union and Big Union Symbol in LaTeX
  • Transpose Symbol in LaTeX
  • Transformée de Laplace en LaTeX
  • Texte au dessus d'une flèche en LaTeX
  • Text above arrow in LaTeX
  • Symbole "plus grand que ou similaire à" en LaTeX
  • Symbole de Variance en LaTeX
  • Symbole de transposée en LaTeX
  • Symbole de "non équivalent à" en LaTeX
  • Symbole d'union et de grande union en LaTeX
  • Symbole d'intersection et de grande intersection en LaTeX
  • Strikethrough - strike out text or formula in LaTeX
  • Passer en mode mathématique en Latex: $, $$ et displaymath
  • Partial Derivatives of Multivariable Functions in LaTeX
  • Numéroter les équations en Latex: leqno et fleqn
  • Not Equivalent Symbol in LaTeX
  • Latex yen symbol
  • Latex valeur absolue
  • Latex tensor product
  • Latex symbole sous-ensemble - inclusion
  • Latex symbole racine carrée
  • Latex symbole produit
  • Latex symbole produit vectoriel
  • Latex symbole pourcentage
  • Latex symbole plus ou moins
  • Latex symbole parallèle
  • Latex symbole orthogonal - Latex symbole perpendiculaire
  • Latex symbole norme pour un vecteur ou une somme
  • Latex symbole n'existe pas
  • Latex symbole n'est pas un sous-ensemble - non-inclus
  • Latex symbole n'est pas parallèle
  • Latex symbole n'appartient pas à
  • Latex symbole multiplication
  • Latex symbole loi normale
  • Latex symbole infini
  • Latex symbole il existe
  • Latex symbole il existe un seul et unique
  • Latex symbole euro
  • Latex symbole Est proportionnel à
  • Latex symbole espérance mathématiques
  • Latex symbole équivalent / équivalence
  • Latex symbole dual ou dague
  • Latex symbole différent
  • Latex symbole dérivée partielle
  • Latex symbole degré
  • Latex symbole de la moyenne
  • Latex symbole de la constante de Planck h
  • Latex symbole congruent
  • LaTeX symbole complément
  • Latex symbole chapeau
  • Latex symbole approximativement
  • Latex symbole appartient à
  • Latex symbol there exists one and only one
  • Latex symbol Planck constant h
  • LaTex symbol partial derivative
  • Latex symbol not in
  • Latex symbol not exists
  • Latex symbol not equal
  • Latex symbol norm for vector and sum
  • Latex symbol multiply
  • LaTeX symbol Is proportional to
  • Latex symbol if and only if / equivalence
  • Latex symbol for all x
  • Latex symbol exists
  • Latex symbol different
  • Latex symbol checkmark
  • LaTeX symbol characteristic function
  • Latex symbol belongs to
  • Latex symbol average
  • Latex symbol approximately
  • Latex subset symbol
  • Latex square root symbol
  • Latex real part symbol
  • Latex real numbers
  • Latex rational numbers
  • Latex quaternion numbers
  • Latex produit tensoriel
  • Latex product symbol
  • Latex pour tout x
  • Latex points de suspension: \ldots,\cdots,\vdots et \ddots
  • Latex plus or minus symbol
  • Latex piecewise function
  • Latex partie réelle
  • Latex partie imaginaire
  • Latex parallel symbol
  • Latex overset and underset
  • Latex orthogonal symbol - Latex perpendicular symbol
  • Latex numbering equations
  • Latex not subset symbol
  • Latex not parallel symbol
  • Latex normal distribution symbol
  • Latex natural numbers
  • Latex k parmi n - coefficient binomial
  • Latex jacobian symbol
  • Latex infinity symbol
  • Latex indicator function
  • Latex imaginary part symbol
  • Latex how to write underscore
  • Latex how to write text in math mode
  • Latex how to write percent
  • Latex how to write bar
  • Latex how to write a fraction
  • Latex how to insert a blank or empty page with or without numbering \thispagestyle,\newpage,\usepackage{afterpage}
  • Latex how to hide page number
  • Latex horizontal space: qquad,hspace, thinspace,enspace
  • Latex hat symbol - wide hat symbol
  • Latex gradient symbol
  • Latex fonction plancher - Latex partie entière inférieure
  • Latex fonction plafond - Latex partie entière supérieure
  • Latex fonction indicatrice
  • Latex floor function
  • Latex flèche
  • Latex expected value symbol - expectation
  • Latex euro symbol
  • Latex espace horizontal: qquad,hspace, thinspace,enspace
  • Latex ensemble vide
  • Latex empty set
  • Latex écrire du texte dans les équations ou en mode mathématique
  • Latex dérivée, limite, somme, produit et intégrale
  • LateX Derivatives, Limits, Sums, Products and Integrals
  • Latex degree symbol
  • Latex dagger symbol or dual symbol
  • Latex copyright, trademark, registered symbols
  • Latex convolution symbol
  • Latex congruent symbol
  • Latex complex numbers
  • Latex complement symbol
  • Latex comment insérer une page blanche,vide avec ou sans numéro, \thispagestyle,\newpage,\usepackage{afterpage}
  • Latex comment faire un underscore
  • Latex ceiling function
  • Latex bra ket notation
  • Latex binomial coefficient
  • Latex barrer du texte ou une équation
  • Latex backslash symbol
  • Latex arrows
  • Latex accolades horizontales et verticales: \left\{,\right\},\underbrace{} et \overbrace{}
  • Latex absolute value
  • Laplace Transform in LaTeX
  • $L^1$, $L^2$, $L^p$ and $L^\infty$ spaces in Latex
  • Intersection and big intersection symbols in LaTeX
  • How to write table in Latex ? begin{tabular}...end{tabular}
  • How to write number sets N Z D Q R C with Latex: \mathbb, amsfonts and \mathbf
  • How to write matrices in Latex ? matrix, pmatrix, bmatrix, vmatrix, Vmatrix
  • How to write angle in latex langle, rangle, wedge, angle, measuredangle, sphericalangle
  • How to write algorithm and pseudocode in Latex ?\usepackage{algorithm},\usepackage{algorithmic}
  • How to write a vector in Latex ? \vec,\overrightarrow
  • How to get dots in Latex \ldots,\cdots,\vdots and \ddots
  • How to display formulas inside a box or frame in Latex ? \boxed
  • Horizontal and vertical curly Latex braces: \left\{,\right\},\underbrace{} and \overbrace{}
  • Greater Than or Similar To Symbol in LaTeX
  • Fonction caractéristique en LaTeX
  • Espaces $L^1$, $L^2$, $L^p$ et $L^\infty$ en Latex
  • Écrire les ensembles classiques en Latex: \mathbb, amsfonts et \mathbf
  • Dérivées partielles de fonctions à plusieurs variables en LaTeX
  • Comment faire un tableau en Latex ? begin{tabular}...end{tabular}
  • Comment encadrer des formules en Latex ? \boxed
  • Comment écrire un angle en latex langle, rangle, wedge, angle, measuredangle, sphericalangle
  • Comment écrire un algorithme en Latex ?\usepackage{algorithm},\usepackage{algorithmic}
  • Comment écrire des vecteurs en Latex? \vec,\overrightarrow

Logo

10 min read

Share this post, published september 6, 2023 in general, how to use latex for presentations: a comprehensive guide, by scholarly, introduction.

In today's digital age, presentations have become an integral part of communication and knowledge sharing. While there are several tools available for creating presentations, LaTeX stands out as a powerful typesetting system that offers unmatched customization and professional-looking output. In this comprehensive guide, we will explore how to use LaTeX for presentations, covering everything from installation to advanced techniques.

LaTeX, created by Leslie Lamport in the 1980s, is a typesetting system widely used in academia and the scientific community. It was initially developed to simplify the process of creating complex documents, such as research papers and mathematical equations. Over the years, LaTeX has evolved to support presentations, offering a unique combination of elegance and flexibility.

In the past, creating presentations required using tools like Microsoft PowerPoint or Apple Keynote. While these tools offer user-friendly interfaces, they often lack the fine-grained control and typographical precision that LaTeX provides.

Current State

Today, LaTeX has gained popularity among academics, researchers, and professionals who value the ability to create visually appealing and consistent presentations. With the availability of modern LaTeX packages like Beamer, creating stunning slideshows has become easier than ever.

Future State

As technology continues to advance, we can expect LaTeX to further enhance its capabilities for presentations. With the integration of AI and machine learning, LaTeX may offer intelligent features like automatic slide layout suggestions, content generation, and real-time collaboration.

Professional Appearance : LaTeX presentations have a distinct and polished look, making them suitable for academic conferences, research seminars, and business meetings.

Customization : LaTeX allows users to customize every aspect of their presentations, from fonts and colors to layout and animations.

Mathematical Typesetting : LaTeX excels at typesetting mathematical equations, making it an ideal choice for scientific and technical presentations.

Version Control : LaTeX presentations can be easily managed using version control systems like Git, enabling collaborative work and easy tracking of changes.

Cross-Platform Compatibility : LaTeX presentations can be compiled into various formats, including PDF, making them accessible on different devices and operating systems.

Significance

The significance of using LaTeX for presentations lies in its ability to produce high-quality output and maintain consistency across different slides. Unlike traditional presentation tools, LaTeX ensures that the design elements, such as fonts, colors, and layout, remain consistent throughout the entire presentation.

Moreover, LaTeX's focus on typesetting mathematical equations makes it indispensable for fields like mathematics, physics, computer science, and engineering, where precise representation of formulas and symbols is crucial.

Best Practices

To make the most out of LaTeX for presentations, consider the following best practices:

Plan and Structure : Outline your presentation and organize your content into logical sections. This will help you maintain a clear flow of information.

Choose a Suitable Theme : Select a Beamer theme that aligns with the tone and purpose of your presentation. Beamer offers a wide range of pre-defined themes to choose from.

Use Consistent Fonts and Colors : Stick to a consistent set of fonts and colors throughout your presentation to maintain a professional and cohesive look.

Leverage LaTeX Packages : Explore various LaTeX packages that extend the functionality of Beamer, such as TikZ for creating diagrams and animations.

Practice and Rehearse : Familiarize yourself with the LaTeX commands and practice compiling your presentation. Rehearse your presentation to ensure a smooth delivery.

Pros and Cons

Professional and Polished Look : LaTeX presentations have a sophisticated appearance that sets them apart from other tools.

Mathematical Typesetting : LaTeX excels at typesetting mathematical equations, making it a preferred choice for technical presentations.

Customization and Flexibility : LaTeX offers extensive customization options, allowing users to create unique and visually appealing presentations.

Version Control and Collaboration : LaTeX presentations can be easily managed using version control systems, facilitating collaboration and version tracking.

Cross-Platform Compatibility : LaTeX presentations can be compiled into various formats, ensuring compatibility across different devices and operating systems.

Learning Curve : LaTeX has a steeper learning curve compared to traditional presentation tools. It requires familiarity with LaTeX syntax and commands.

Limited WYSIWYG Editing : Unlike WYSIWYG (What You See Is What You Get) editors, LaTeX requires compiling the code to see the final output.

Time-Consuming : Creating complex presentations in LaTeX can be time-consuming, especially when dealing with intricate layouts and animations.

Less Interactive Features : LaTeX presentations lack some of the interactive features available in other tools, such as embedded videos or live web content.

Dependency on LaTeX Distribution : Using LaTeX for presentations requires installing a LaTeX distribution, which may require additional setup and maintenance.

When considering LaTeX for presentations, it's essential to compare it with other popular tools like Microsoft PowerPoint and Apple Keynote. While LaTeX offers unparalleled customization and typographical control, PowerPoint and Keynote excel in terms of user-friendliness and interactive features.

Method 1: Installation and Setup

  • Install a LaTeX distribution like TeX Live or MiKTeX on your computer.
  • Choose a LaTeX editor, such as TeXstudio or Overleaf, to write your presentation code.
  • Start a new LaTeX document and include the necessary packages for creating presentations.
  • Write your presentation content using LaTeX commands and syntax.
  • Compile the LaTeX code to generate the presentation output in PDF format.

Method 2: Using Beamer

  • Start a new LaTeX document and load the Beamer class.
  • Define the document structure, including the title, author, and date.
  • Create slides using the frame environment and add content using LaTeX commands.
  • Customize the appearance of your slides using Beamer themes, colors, and fonts.
  • Compile the LaTeX code to generate the Beamer presentation.

Method 3: Templates

  • Explore the wide range of Beamer templates available online.
  • Choose a template that suits your presentation style and content.
  • Download the template and customize it with your own content.
  • Compile the LaTeX code to generate the presentation output.

Method 4: LaTeX Presentation Editors

  • Use online LaTeX editors like Overleaf or ShareLaTeX that provide a user-friendly interface for creating presentations.
  • Start a new project and select the presentation template.
  • Write your presentation content using the built-in LaTeX editor.
  • Customize the appearance of your slides using the provided options.

AI Applications

AI can enhance the presentation creation process by providing intelligent suggestions for slide layouts, content organization, and visual design. It can analyze the presenter's speech patterns and provide real-time feedback for improvement.

AI Techniques

AI techniques like natural language processing (NLP) can be used to automatically generate slide content based on the presenter's input. Image recognition algorithms can assist in selecting relevant images and graphics for the presentation.

AI Benefits

  • Time-Saving : AI-powered tools can automate repetitive tasks, such as slide layout design and content generation, saving valuable time for presenters.
  • Enhanced Creativity : AI can suggest creative ideas for slide design and content arrangement, helping presenters think outside the box.
  • Improved Engagement : AI can analyze audience feedback and adapt the presentation in real-time to maximize engagement and impact.

AI Challenges

  • Data Privacy : AI tools may require access to personal or sensitive information, raising concerns about data privacy and security.
  • Algorithm Bias : AI algorithms may exhibit bias in their suggestions or recommendations, potentially affecting the objectivity and fairness of the presentation.
  • Complexity and Reliability : AI systems can be complex and may require continuous updates and maintenance to ensure reliable performance.

Potential Online Apps

  • Overleaf : An online LaTeX editor with collaborative features, perfect for creating presentations.
  • ShareLaTeX : Another online LaTeX editor that offers real-time collaboration and a user-friendly interface.
  • Beamer Theme Gallery : A collection of Beamer themes that can be used to customize the appearance of your LaTeX presentations.
  • LaTeX Beamer Templates : A repository of free LaTeX Beamer templates for various presentation styles.
  • Slidebean : An AI-powered presentation tool that offers pre-designed templates and content suggestions.

Using LaTeX for presentations offers numerous advantages in terms of customization, professionalism, and typesetting capabilities. While it may have a steeper learning curve compared to traditional presentation tools, the benefits outweigh the challenges. By following best practices and exploring the vast resources available, you can create visually stunning and impactful presentations using LaTeX. Embrace the power of LaTeX and elevate your presentation game to new heights.

Keep Reading

Revolutionize Your Learning: The Impact of AI-Powered Technology

Revolutionize Your Learning: The Impact of AI-Powered Technology

Posted November 15, 2023

Next-Gen Learning: Embrace AI-Powered Education Now

Next-Gen Learning: Embrace AI-Powered Education Now

Harnessing AI: Tools and Tips to Accelerate Your AI Learning

Harnessing AI: Tools and Tips to Accelerate Your AI Learning

AI Education: How to Learn AI With Confidence and Ease

AI Education: How to Learn AI With Confidence and Ease

Try scholarly.

It's completely free, simple to use, and easy to get started.

Join thousands of students and educators today.

Are you a school or organization? Contact us

© 2024 Scholarly. All rights reserved.

  • Behind the Scenes

How to Make a Presentation in LaTeX

' src=

December 7, 2016 Trudy Firestone 5 Comments

When I was tasked with creating a presentation to share with my co-workers at our weekly tech talk, I chose to use LaTeX. While I briefly considered other tools, like Google Slides or PowerPoint, using LaTeX allowed me to easily separate the styling from my content and create my own theme that I could reuse for all future presentations at Lucid.

What? LaTeX for Presentations?

LaTeX is a typesetting and document creation tool that is often used for creating academic articles due to its ability to display mathematical equations. Beyond that, it has many other capabilities due to a large amount of packages, such as Forest, which I used for laying out sentence trees in a college Linguistics class. One such package, Beamer , allows you to create presentations. While Beamer lacks the simple click and drag functionality of a GUI tool in creating presentations, it makes up for it by automating a large portion of the stylistic work—as long as you like the default styles or are willing to write your own—and offering all the mathematical equations, graphs, and other tools available in LaTeX.

A sample Beamer document:

Sample LaTeX file with default beamer theme

The Beamer commands are straightforward, and the flow of the presentation is easier to follow than it is in a GUI tool. While you could split the styling from the market using html and css, I enjoy using the Beamer package due to its concise creation of slides. Looking at a LaTeX file for a Beamer presentation is almost like looking at an outline which makes it more closely connected to the content the presentation is trying to convey. Unfortunately, I don’t like the default theme…or any of the other themes .

After lots of searching, however, I was able to create my own theme, lucid. Then, just by uncommenting \usetheme{lucid} , I was able to create a presentation I was pleased with. Only a few weeks ago, I was able to reuse the theme and create a new presentation with all the custom styling that I wanted in much less time than a GUI tool would have required to replicate my original theme.

Sample LaTeX file with our new lucid theme

Building Your Own Beamer Theme

While it’s easy to find documentation on creating a presentation using Beamer , it’s more difficult to locate documentation on building a Beamer theme. Therefore, I’m going to walk through creating a simple Beamer theme with its own title page, header and footer, and styled lists.

The first step in creating a Beamer theme is creating the following four files where “lucid” is the name of our new theme:

  • beamerinnerthemelucid.sty
  • beamerouterthemelucid.sty
  • beamercolorthemelucid.sty
  • beamerthemelucid.sty

While it’s not necessary to separate these into four files, it follows the pattern of Beamer’s own themes which allow for mixing and matching different parts of the theme. For instance, if we wanted to use the albatross color theme with the default theme we could replace \usetheme{lucid} in the above sample file like this:

And the output pdf would consist of this:

Default LaTeX Beamer theme with albatross color theme

The three parts of a theme are:

  • Inner: Defines the appearance of any items that make up the slides central content, e.g., lists or the title on the title page
  • Outer: Defines the appearance of the chrome of the slide, e.g., the title and footer of each slide
  • Color: Defines the colors used in various parts of the theme, e.g.,the color for frame titles or the background color

The final file, beamerthemelucid.sty, simply exists to combine all the parts of the theme into the main theme so it can be used without specifying each part of the theme.

beamerthemelucid.sty:

The change to presentation mode at the beginning of the file is added so that the .sty file will match the mode of the presentation .tex file. Beamer automatically converts all files with its document class to presentation mode. The rest of the file simply sets all the portions of the theme to the new lucid theme and then returns the file to the normal mode. Each of the .sty files used to create the theme needs to be put in presentation mode in the same way.

Right now, the theme doesn’t actually change anything. Everything is still using the default theme because we haven’t defined any new styles. Let’s start with the title page. Because the title is part of the inner content of the title page, the definition for its style goes into beamerinnerthemelucid.sty.

I want a title page that’s centered vertically and horizontally like the one in the default theme, but with a bigger font, a different color, and no date. So, let’s add the following to beamerinnerthemelucid.sty between the mode changes:

Sample LaTeX presentation title page with simplified title

The \defbeamertemplate command creates a new template where the first argument is the mode, * in this case, the second argument is what the template is for, and the third argument is the name of the new template. To access the template elsewhere, the given name is used, in this case “lucid.” The final part of \defbeamertemplate is where the actual template is defined using arbitrary LaTeX code. In this case, we use common commands for centering and accessed the title and subtitle via \inserttitle and \insertsubtitle . To get the correct colors, we use \usebeamercolor which fetches the correct colors from the color theme based on the element name given, i.e., the name of the color. Similarly, \usebeamerfont fetches the correct font from the font theme, so that you can specify the font separately.

However, the color and the font remain unchanged, so we need to edit the color theme file next. I want white text on a dark background, so we need to change the background color first.

Sample LaTeX presentation title page with new background color

After adding these commands in beamercolorthemelucid.sty, the title page looks just about the way I want it. The background is gray, and the title and subtitle are in a new size and color. However, Beamer’s default links are still in the bottom right hand corner. To remove them, we add the following line to beamerouterthemelucid.sty because the footer is part of the outer theme.

Updated LaTeX presentation title page without navigation symbols

Like \defbeamertemplate , \setbeamertemplate can be used to define a new template. The element that uses the template is immediately set to use the new template rather than being set separately. In this case, the navigation symbols element is set to empty.

Now that the title page looks just the way I want it to, we can move on to the content slides. While they already have the correct background color and are correctly lacking the navigation symbols in the footer, the title and subtitle are the wrong color and lack style.

 LaTeX presentation content slides without any additional style changes

Because the frame title is part of the outer theme, we add the following to beamerouterthemelucid.sty:

In addition to the now familiar Beamer commands, we use an if statement to differentiate between the cases of when there is and isn’t a subtitle, and we make use of a new package, tikz, which allows the user to create drawings in LaTeX. By using it in the template for the frametitle, we’ve added a rectangle to each frame title in the presentation. We set the color of the rectangle with the Beamer color frametitle-left which the command \usebeamercolor[fg]{frametitle-left} adds to the environment.

LaTeX presentation content frames with updated frametitle layout

The colors and fonts are correctly reading from beamercolorthemelucid.sty, but it hasn’t been updated, so that’s the next step.

LaTeX presentation content frames with updated frametitle colors

The content of the slides is still in the default style, so we turn to beamerinnerthemelucid.sty to modify the template for lists.

Just as \setbeamertemplate can be used to define a new template that is immediately applied, it can also be used to set a template defined by \defbeamertemplate earlier. square is defined by default in the beamer package, and it makes the bullets in an unordered list square.

LaTeX presentation slide with square bullets for the list

To change the colors of content and the list items, we update beamercolortheme.sty again.

LaTeX presentation slides with updated content colors

The last thing missing from our theme is a new footer. We need to add a page number and logo to each page.

LaTeX presentation slides with footer with page numbers and logo

Adding the above to beamerouterthemelucid.sty splits the footer in half, putting the page number out of the total number of pages on one side and a logo on the other. lucidsoftware-logo.png has to be included in the same directory for it to compile correctly. The if statement removes the page number from the first page.

Finally, we add the color for the page number to beamercolorthemelucid.sty:

Creating your own LaTeX theme allows for complete customizability, something you have to work very hard to achieve in more conventional presentational tools. It also makes it trivial to reuse the theme, avoiding wasted effort.

Additional References:

  • Another Theme Example

Related Articles

No Picture

Live Editing HTML and CSS with Chrome DevTools

Time-saving chrome devtools shortcuts, agile documentation: keeping your team in sync in an agile world, 5 smart strategies to increasing productivity in the workplace.

' src=

Was doing just that in the ’80s with DCF and Generalised Markup Language.

Styles were called “profiles”. You could roll your own, tailor an existing style or buy one.

The same base document could be formatted for a book, presentation or display.

Likely still used in producing IBM manuals.

' src=

So, have you uploaded your theme on CTAN? That’s the TeX-way to share 🙂

' src=

Thanks a lot This article helped me a lot to prepare my communication for this week (Stil working on it) Much thanks <3

' src=

Thank you a million times, i had a very very incredible experience with your tutorial. I made my own theme and i love it 🙂 I’m going to make a video on YouTube for this beautiful simplistic tex presentation solution. I’ll definitely link to your great tutorial there.

' src=

I do agree with all the ideas you have introduced on your post.

They’re really convincing and wll definitely work. Nonetheless, the posts are too brief for starters. May you please lengthen them a bit from subsequent time? Thanks for the post.

Your email address will not be published.

Save my name, email, and website in this browser for the next time I comment.

Presentations

Presentations, otherwise known as seminars, talks or lectures, are given to an audience with the purpose of sharing information with a group of people. This may be at an academic conference, a business meeting or even a project progress update. Since LaTeX produces PDFs, you simply need to open the presentation PDF in full screen mode in your PDF viewer to give the presentation.

online latex presentation

Beamer Presentation

This presentation template uses the well-known beamer class and shows how effortless making presentations using LaTeX can be. The template contains extensive commenting which lets you customize your presentation easily, be it to change the layout theme, colors, fonts, font size, text alignment or more. It also features many example slides for virtually any presentation element you may need.

  • View Template Information

Focus Presentation

This template creates modern presentation slides using the beamer class. The minimalist design lets you quickly enter your content and spend time honing your message rather than wasting time in presentation software. The template includes examples of many slide types which should cover most use cases as well as different ways of putting in your content no matter what it is and how you want to emphasize it.

Fancyslides Presentation

This presentation template uses the Fancyslides class which builds on top of the well-known beamer class to give it a modern and concise design. The template is very minimalist with large font sizes and little space for text and would thus be suited for popular presentations by confident speakers. It makes extensive use of background images for slides to provide a strong visual counterpart to the verbal presentation. Content within the presentation is housed within translucent colored circles or rectangles. The former are used for main points or section delineations while the latter are used for larger blocks of text or data slides. Several predefined color options are present within the template and you can also define your own.

online latex presentation

LaTeX Templates Information

General enquiries [email protected]

Most templates licensed under CC BY-NC-SA 4.0

LaTeX Templates is developed in New Zealand

© Creodocs Limited. All Rights Reserved.

Calendar of Events

National Archives Logo

2024 WWII Emerging Scholars Symposium - DeMasi presentation

Eisenhower, roosevelt, and truman presidential libraries online.

Presenting Scholar: Ms. Sue DeMasi “Utopian John” – Peace Advocate and Ambassador John Gilbert Winant

YouTube Livestream

This virtual symposium focuses on specialized topics related to the Allied effort during World War II. Each program wraps up with a Scholar Spotlight where we get to know a little bit more about each of these up and coming scholars.

online latex presentation

All events listed in the calendar are free unless noted.

  • International

Claudia Sheinbaum projected to be Mexico's first woman president

By Kathleen Magramo, Maureen Chowdhury, Matt Meyer, Antoinette Radford and Melissa Macaya, CNN

Mexico's outgoing president says he will not try to influence Sheinbaum in naming future officials

From CNN's Abel Alvarado in Atlanta

Mexico's President Andrés Manuel López Obrador attends a press conference after the general election in Mexico City, on June 3.

Mexico’s President Andrés Manuel López Obrador said he will not influence newly elected president Claudia Sheinbaum in naming future officials for the country after Sunday’s landslide victory.

 “She (Sheinbaum) is the one empowered to make all the decisions. I am not going to influence anything,” López Obrador said during his morning presser on Monday.

“She is going to choose her team,” he added.

However, he suggested that changes would come with the new president because it was part of the “transformation” he started for the country when he took office nearly six years ago.

López Obrador also said he may discuss constitutional reforms with Sheinbaum during the transition period but made it clear that he didn’t “want to impose anything.”

Sheinbaum will take office on October 1. Her term will last six years.

López Obrador, who is Sheinbaum’s political mentor, congratulated her on the win.

“We already spoke yesterday (Sunday); I congratulated her. I am very happy because imagine what it means to hand over the presidency to a woman after 200 years of only men ruling Mexico,” the president said.

The president said that once he hands over the presidential band, he plans to retire from political life entirely and will do so with “a lot of satisfaction.”

“Let it be heard loud and clear: after I finish my term in office, I will retire, and I will never again participate in any public or political act,” he said. 

Biden congratulates Sheinbaum for her historic win

US President Joe Biden speaks at the White House in Washington on May 31.

US President Joe Biden congratulated Claudia Sheinbaum on her historic presidential win as Mexico's first woman to lead the country's government.

"I look forward to working closely with President-elect Sheinbaum in the spirit of partnership and friendship that reflects the enduring bonds between our two countries," he said in a statement Monday. "I expressed our commitment to advancing the values and interests of both our nations to the benefit of our peoples."

Read Biden's full statement:

"I congratulate Claudia Sheinbaum on her historic election as the first woman President of Mexico. I look forward to working closely with President-elect Sheinbaum in the spirit of partnership and friendship that reflects the enduring bonds between our two countries. I expressed our commitment to advancing the values and interests of both our nations to the benefit of our peoples. I also congratulate the Mexican people for conducting a nationwide successful democratic electoral process involving races for more than 20,000 positions at the local, state, and federal levels."

Mexican peso falls against the US dollar

From CNN's Krystal Hur

A woman walks past a board showing currency exchange rates of the Mexican peso against the US dollar in Mexico City, on May 28.

The Mexican peso slipped roughly 3% against the US dollar Monday morning.

It comes after Claudia Sheinbaum's projected landslide victory, which has raised concerns that the ruling Morena party will be able to pass more ambitious constitutional reforms, many of which had been sought by outgoing President Andrés Manuel López Obrador.

"Sheinbaum is perceived as more of a technocrat than AMLO, and she also has a background in climate science. Both offer potential shifts in Mexican policy," wrote Bespoke Investment Group researchers in a Monday note.

Latin American leaders celebrate Claudia Sheinbaum's projected win

From CNN's Abel Alvarado

Claudia Sheinbaum waves to supporters in Mexico City on June 3.

Latin American leaders are celebrating Claudia Sheinbaum's projected win as Mexico's president with leaders referencing a common theme — that her appointment would hopefully see strengthened relationships between countries on the continent.

Sheinbaum will face several challenges, including security, organized crime, energy and immigration, and would also set the tone for  the pivotal US-Mexico bilateral relationship . 

  • Cuban President Miguel Diaz-Canel  said in a post on X: "We wish her success in her management, the first for a woman in that position."
  • Honduran President Xiomara Castro extended her "sincere congratulations" to Sheinbaum, "as the first female president of Honduras" on X . Castro said she spoke to Sheinbaum following her victory and agreed "to work together for the unity of Latin America and the Caribbean."
  • Venezuelan President Nicolas Maduro called her win a "great victory for the Great Homeland. I hug you! Long live Mexico!"
  • Bolivian President Luis Arce congratulated her on X and added that they "salute salute all the Mexican people for their democratic vocation and broad participation in the electoral process."
  • Colombian President Gustavo Petro described Sheinbaum's appointment as "a triumph for the Mexican people and for their democracy."
  • Costa Rica 's presidency referred to the two countries as "brother countries" and congratulated Sheinbaum on her appointment.

Millions turn out for largest election in Mexico's history

From CNN's Tara John and CNN en Español

People queue to vote at a polling station in Colonia Libertad, near the US-Mexico border in Tijuana, Mexico, on June 2.

Sunday’s poll was the largest election in the country’s history. More than 98 million voters were registered to cast a ballot, and 1.4 million Mexicans were eligible to vote abroad.

In addition to the presidency, more than 20,000 positions were being contested by an estimated 70,000 candidates vying to become senators, mayors and governors.

But the elections were plagued by  immense violence . There have been more than 20 political killings since September, according to the Mexican government. By some estimates though, that number is even higher. According to Mexican consultancy firm Integralia, at least 34 candidates were murdered in the run-up to the vote.

Voting was suspended for several hours on Sunday in the southeastern Mexican town of Coyomeapan due to violence at the polling centers, according to state electoral authorities.

And while the murder rate fell in Mexico  between 2019 and 2022 , in absolute numbers the country is still reeling from historically high levels of around 30,000 homicides each year. The true number is likely higher, experts say.

The violence appeared to have been a top concern for voters as cartels extend their grip through Mexico.

Claudia Sheinbaum has been coy about her security proposals but has pointed to her record as Mexico City mayor, when, according to her team, she improved the police force’s working conditions and intelligence-gathering abilities.

The count: Mexico Elections 2024

Outgoing mexican president congratulates sheinbaum.

From CNN's Mia Alberti

A video of outgoing Mexican President Andrés Manuel López Obrador congratulating projected president Claudia Sheinbaum is displayed at a hotel in Mexico City on June 3.

Mexico's President Andres Manuel López Obrador has congratulated Claudia Sheinbaum on her expected win in Sunday's presidential election. 

"With all my affection and respect I congratulate Claudia Sheinbaum who came out victorious with an ample margin. She will be the first (female) President of Mexico... but also the President, possibly, with most votes obtained in all of the history of our country," he said in a video posted on X. 

López Obrador also congratulated the other presidential candidates and the Mexican people, saying he was proud of the large turnout.

Mexico's expected president Sheinbaum pledges to govern all Mexicans "without distinction"

From CNN's Michael Rios

Claudia Sheinbaum addresses supporters in Mexico City on Monday, June 3.

Claudia Sheinbaum has responded to the announcement of her projected victory in Mexico's presidential election early Monday morning, saying her administration would govern all Mexicans “without distinction,” even though not everyone supports her policies.

“Our duty is and will always be to look after every single Mexican without distinction. So even though many Mexicans do not fully agree with our project, we will have to walk in peace and harmony to continue building a fair and more prosperous Mexico,” she told supporters in a speech.

She also spoke about the historical significance of becoming the first female president of the country.

Sheinbaum said her two rivals in the race, Xóchitl Gálvez and Jorge Álvarez Máynez, had called to congratulate her on her projected victory.

Sheinbaum, the candidate from the ruling party, received the most votes in Sunday's elections, according to preliminary results from the National Electoral Institute.

The Electoral Court must validate the presidential election, and if confirmed, Sheinbaum will start her presidency on October 1.

Sheinbaum's large margin shows power of Mexico's ruling party, CNN journalist says

From CNN's Kathleen Magramo

Ruling party presidential candidate Claudia Sheinbaum leaves the polling station where she voted during general elections in Mexico City, on June 2.

Even though Claudia Sheinbaum was expected to win during campaign polls, her large margin in the votes came as a shock, CNN’s Gustavo Valdes reports from Mexico City.

Sheinbaum might get up to 60% of the vote, which is even higher than outgoing President Andrés Manuel López Obrador when he was elected six years ago, Valdes said.

Sheinbaum is the candidate for the ruling Morena party.

"That gives you an idea of the political power that López Obrador has amassed over the past six years," Valdes told CNN's Rosemary Church.

Valdes said voters told CNN that a woman president would help change Mexico's image of being a "macho" country, where patriarchal culture impedes women's advancements.

"Mexico has actually changed its laws to encourage and actually force the parties to have more female candidates. So so there's a very equal division of power between many woman in congress and the governorships," Valdes said.

Please enable JavaScript for a better experience.

No Search Results

How to create a basic slideshow presentation in LaTeX with Beamer

This is the 19th video in a series of 21 by Dr Vincent Knight of Cardiff University. Here we see how to create a very basic presentation in LaTeX, using the beamer document class. We see how to use the \frame command to create slides, and in the next tutorial we'll see how to add a title page and more.

The example given in the video is also provided here as a template. To get started, click here to open the 'Presentation' example .

See the full list of tutorial videos .

  • Documentation Home
  • Learn LaTeX in 30 minutes

Overleaf guides

  • Creating a document in Overleaf
  • Uploading a project
  • Copying a project
  • Creating a project from a template
  • Using the Overleaf project menu
  • Including images in Overleaf
  • Exporting your work from Overleaf
  • Working offline in Overleaf
  • Using Track Changes in Overleaf
  • Using bibliographies in Overleaf
  • Sharing your work with others
  • Using the History feature
  • Debugging Compilation timeout errors
  • How-to guides
  • Guide to Overleaf’s premium features

LaTeX Basics

  • Creating your first LaTeX document
  • Choosing a LaTeX Compiler
  • Paragraphs and new lines
  • Bold, italics and underlining

Mathematics

  • Mathematical expressions
  • Subscripts and superscripts
  • Brackets and Parentheses
  • Fractions and Binomials
  • Aligning equations
  • Spacing in math mode
  • Integrals, sums and limits
  • Display style in math mode
  • List of Greek letters and math symbols
  • Mathematical fonts
  • Using the Symbol Palette in Overleaf

Figures and tables

  • Inserting Images
  • Positioning Images and Tables
  • Lists of Tables and Figures
  • Drawing Diagrams Directly in LaTeX
  • TikZ package

References and Citations

  • Bibliography management with bibtex
  • Bibliography management with natbib
  • Bibliography management with biblatex
  • Bibtex bibliography styles
  • Natbib bibliography styles
  • Natbib citation styles
  • Biblatex bibliography styles
  • Biblatex citation styles
  • Multilingual typesetting on Overleaf using polyglossia and fontspec
  • Multilingual typesetting on Overleaf using babel and fontspec
  • International language support
  • Quotations and quotation marks

Document structure

  • Sections and chapters
  • Table of contents
  • Cross referencing sections, equations and floats
  • Nomenclatures
  • Management in a large project
  • Multi-file LaTeX projects
  • Lengths in L a T e X
  • Headers and footers
  • Page numbering
  • Paragraph formatting
  • Line breaks and blank spaces
  • Text alignment
  • Page size and margins
  • Single sided and double sided documents
  • Multiple columns
  • Code listing
  • Code Highlighting with minted
  • Using colours in LaTeX
  • Margin notes
  • Font sizes, families, and styles
  • Font typefaces
  • Supporting modern fonts with X Ǝ L a T e X

Presentations

  • Environments

Field specific

  • Theorems and proofs
  • Chemistry formulae
  • Feynman diagrams
  • Molecular orbital diagrams
  • Chess notation
  • Knitting patterns
  • CircuiTikz package
  • Pgfplots package
  • Typesetting exams in LaTeX
  • Attribute Value Matrices

Class files

  • Understanding packages and class files
  • List of packages and class files
  • Writing your own package
  • Writing your own class

Advanced TeX/LaTeX

  • In-depth technical articles on TeX/LaTeX

Get in touch

Have you checked our knowledge base ?

Message sent! Our team will review it and reply by email.

Email: 

IMAGES

  1. How to Make a Presentation in LaTeX

    online latex presentation

  2. LaTeX Templates

    online latex presentation

  3. Titles and sections in presentations in LaTeX with overleaf (v2)

    online latex presentation

  4. Templates Latex Presentation

    online latex presentation

  5. Make Presentation in LaTeX

    online latex presentation

  6. Your First LaTeX Presentation–Title Page

    online latex presentation

VIDEO

  1. Black Latex Presentation.flv

  2. Learn LaTeX with Dr. Hayes

  3. Dangers of Latex Balloons

  4. Liquid latex over my makeup🤪

  5. How to make presentation slides using LaTeX Overleaf

  6. LaTeX and Neat Presentations

COMMENTS

  1. Beamer Presentation

    Abstract. If you're looking to get started with a LaTeX presentation, this template is for you! You can customise the look and feel of your presentation by choosing your preferred combination of Theme and Color Theme. Click the image above to get started, and try changing the theme to "Madrid" to get the look shown. For more hints and tips on ...

  2. LaTeX Beamer introduction / Quick-start guide

    The minimal code of a LaTeX presentation includes: 1) loading the beamer class package, 2) choosing a default presentation theme and a frame. Here is an example: Copy to clipboard. % Quick start guide. \documentclass{beamer} \usetheme{default} \begin{document} \begin{frame} This is your first presentation!

  3. LaTeX Beamer

    What is Beamer? Beamer is a LaTeX document class that is used for creating presentations. This class offers several pre-designed templates and a set of interesting features for making customized ones. "Beamer" is a German word and its Pseudo-Anglicism in (British/American English) is projector (specifically, video projector).

  4. Papeeria: online LaTeX editor

    Create new documents instantly from one of our templates . Whether you start your CV, work on a paper for an ACM journal or prepare a presentation full of maths, there is a template for that. View templates. Free online LaTeX, Markdown and plots for scientific papers. Unlimited real-time collaboration.

  5. A simple guide to Beamer- Step by Step

    Lesson 1 - Your First LaTeX Presentation-Title Page. Lesson 2 - Add and Position a Logo in Beamer. Lesson 3 - Create a Table of Contents in Beamer. Lesson 4 - Eight Beamer Environments you Should be Familiar With! Lesson 5 - Lists in Beamer - Complete Guide. Lesson 6 - Create and Customize Columns in Beamer.

  6. Making Presentations With LaTeX

    So, we opened an empty LaTeX document, and we want to create a Beamer presentation. The very first thing to do is define our document class as a Beamer document. We do that by adding the following line to the document: \documentclass{beamer} Next, we do the definition of the presentation core information.

  7. How I Make Presentations Using LaTeX & Beamer

    Get started with LaTeX using Overleaf: https://www.overleaf.com/?utm_source=yt&utm_medium=link&utm_campaign=im22tb. My thanks to Overleaf for sponsoring t...

  8. Creating Presentation using LATEX (Beamer Slides) online 1/3

    I had given a tutorial about creating Latex presentations online on Overleaf.com

  9. How to make a presentation with Latex

    Inserting a figure in a Beamer presentation. To insert an image or a figure, we proceed as in LaTeX by using the \includegraphics command. Here is an example: \begin{figure} \includegraphics[options]{path_to_image} \end{figure} In Beamer, we should distinguish between two types of figures:

  10. Beamer Presentations: A Tutorial for Beginners (Part 1 ...

    This five-part series of articles uses a combination of video and textual descriptions to teach the basics of creating a presentation using the LaTeX beamer package. These tutorials were first published on the original ShareLateX blog site during August 2013; consequently, today's editor interface (Overleaf) has changed considerably due to the ...

  11. How to Use LaTeX for Presentations: A Comprehensive Guide

    Compile the LaTeX code to generate the presentation output. Method 4: LaTeX Presentation Editors. Use online LaTeX editors like Overleaf or ShareLaTeX that provide a user-friendly interface for creating presentations. Start a new project and select the presentation template. Write your presentation content using the built-in LaTeX editor.

  12. LaTeX Templates

    This presentation template uses the well-known beamer class and shows how effortless making presentations using LaTeX can be. The template contains extensive commenting which lets you customize your presentation easily, be it to change the layout theme, colors, fonts, font size, text alignment or more. It also features many example slides for ...

  13. How to Make a Presentation in LaTeX

    beamerthemelucid.sty: \mode<presentation>. \useinnertheme{lucid} \useoutertheme{lucid} \usecolortheme{lucid} \mode<all>. The change to presentation mode at the beginning of the file is added so that the .sty file will match the mode of the presentation .tex file. Beamer automatically converts all files with its document class to presentation mode.

  14. LaTeX Tutorial 11: Beamer Slide Presentation

    This tutorial will walk you through creating a beamer slideshow presentation using Texmaker. Includes the creation of a titlepage, changing theme options and...

  15. LaTeX Templates

    This presentation template uses the well-known beamer class and shows how effortless making presentations using LaTeX can be. The template contains extensive commenting which lets you customize your presentation easily, be it to change the layout theme, colors, fonts, font size, text alignment or more. It also features many example slides for ...

  16. Templates

    Show all Templates. Communicating and sharing your work effectively with colleagues, supervisors and the general public often requires the preparation of a suitable presentation, tailored to that audience. These templates make it easy to create such a presentation, and the resulting set of slides is available for distribution in PDF format ...

  17. presentations

    Long story short, I have to do a presentation in PowerPoint, I want to be able to insert LaTeX equations as images (possibly png) with transparent background. Normally I have found the MS office equation editor adequate for simple presentations, but this time I seem to be unable to get the effect I want with the particular font I want (probably ...

  18. Free AI presentation maker: generate slides in seconds

    Try the AI Menti Builder today! This is the first version of the AI Menti Builder, and we are committed to continually enhancing our AI-generated content to ensure it becomes more accurate. Try it out and let us know what you think! Add a prompt and watch as it instantly crafts an interactive draft of a presentation, fully customizable by you.

  19. 2024 WWII Emerging Scholars Symposium

    Wednesday, June 5, 2024 - 11:00 a.m. to 12:00 p.m. CDT. Presenting Scholar: Ms. Sue DeMasi. "Utopian John" - Peace Advocate and Ambassador John Gilbert Winant. YouTube Livestream. This virtual symposium focuses on specialized topics related to the Allied effort during World War II. Each program wraps up with a Scholar Spotlight where we ...

  20. Beamer Presentations: A Tutorial for Beginners (Part 1)—Getting Started

    This five-part series of articles uses a combination of video and textual descriptions to teach the basics of creating a presentation using the LaTeX beamer package. These tutorials were first published on the original ShareLateX blog site during August 2013; consequently, today's editor interface (Overleaf) has changed considerably due to the ...

  21. Improved mechanistic performance of natural rubber latex modified

    This research examined the impact of incorporating a Natural Rubber Latex (NRL) additive on the mechanical and durability improvement of concrete pavements. The study evaluated the influence of water to cement (w/c) ratios and dry rubber to cement (r/c) ratios on compressive and flexural strengths, as well as flexural fatigue characteristics ...

  22. How can I make powerpoint-like presentation in LaTeX?

    A popular option for creating presentations with LaTeX is the beamer package, which is widely supported through additional themes and add-on packages. To get started with beamer you can try one of these: Overleaf's introduction to beamer; part 3 of our free online LaTeX course; a presentation template listed in our Gallery. powerdot package

  23. Mexico election live updates: Voters set to elect first female

    Mexico is expected to elect its first woman president Sunday as millions head to the polls to vote for national and local candidates. Follow here for the latest live news updates, results and more.

  24. Deciphera Pharmaceuticals Announces Oral Presentation of ...

    Deciphera Pharmaceuticals Announces Oral Presentation of Results from MOTION Pivotal Phase 3 Study of Vimseltinib in Patients with Tenosynovial Giant Cell Tumor (TGCT) at the 2024 ASCO Annual Meeting and Online Publication in The Lancet - read this article along with other careers information, tips and advice on BioSpace

  25. How to create a basic slideshow presentation in LaTeX with ...

    Here we see how to create a very basic presentation in LaTeX, using the beamer document class. We see how to use the \frame command to create slides, and in the next tutorial we'll see how to add a title page and more. The example given in the video is also provided here as a template. To get started, click here to open the 'Presentation' example.