0% found this document useful (0 votes)
163 views28 pages

香港中文大学中文模版CUHK Beamer Template

This document serves as a guide for using LaTeX and the Beamer package to create presentations, specifically tailored for SINTEF slides. It covers the advantages of using LaTeX over PowerPoint, basic commands for setting up slides, personalization options, and tips for effective presentation design. Additionally, it includes references for further reading and encourages feedback for improvements.

Uploaded by

arzhaozhengz
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
163 views28 pages

香港中文大学中文模版CUHK Beamer Template

This document serves as a guide for using LaTeX and the Beamer package to create presentations, specifically tailored for SINTEF slides. It covers the advantages of using LaTeX over PowerPoint, basic commands for setting up slides, personalization options, and tips for effective presentation design. Additionally, it includes references for further reading and encourages feedback for improvements.

Uploaded by

arzhaozhengz
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 28

Title

subtitle
author1, author2
September 26, 2024

1/25
This template is a based on SINTEF Presentation from Federico Zenith and its derivation Beamer-LaTeX-Themes
from Liu Qilong

CUHK style adaptation contributed by Rui HU

In the following you find a brief introduction on how to use LATEX and the beamer package to prepare slides,
based on the one written by Federico Zenith for SINTEF Presentation

2/25
Table of Contents
1 Introduction

► Introduction

► Personalization

► Summary

► Reference

3/25
Beamer for SINTEF slides
1 Introduction

• We assume you can use LAT X; if you cannot, you can learn it here
E
• Beamer is one of the most popular and powerful document classes for presentations in
LATEX
• Beamer has also a detailed user manual
• Here we will present only the most basic features to get you up to speed

4/25
Beamer vs. PowerPoint
1 Introduction

Compared to PowerPoint, using LATEX is better because:


• It is not What-You-See-Is-What-You-Get, but What-You-Mean-Is-What-You-Get:
you write the content, the computer does the typesetting
• Produces a pdf: no problems with fonts, formulas, program versions
• Easier to keep consistent style, fonts, highlighting, etc.
• Math typesetting in T X is the best:
E

i ℏ Ψ(r, t) = − ∇2 Ψ(r, t) + V(r)Ψ(r,
t) ℏ2
∂t 2m

5/25
Getting Started
Selecting the SINTEF Theme

To start working with sintefbeamer, start a LATEX document with the


preamble:
Minimum SINTEF Beamer Document
\documentclass{beamer}
\usetheme{sintef}
\begin{document}
\begin{frame}{Hello, world!}
\end{frame}
\end{document}

6/25
Title page
1 Introduction

To set a typical title page, you call some commands in the preamble:
The Commands for the Title Page
\title{Sample Title}
\subtitle{Sample subtitle}
\author{First Author, Second Author}
\date{\today} % Can also be (ab)used for conference name &c.
You can then write out the title page with \maketitle.
To set a background image use the \titlebackground command before \maketitle; its only argument is
the name (or path) of a graphic file.
If you use the starred version \titlebackground*, the image will be clipped to a split view on the right side of
the title slide.

7/25
Writing a Simple Slide
It’s really easy!

• A typical slide has bulleted lists

8/25
Writing a Simple Slide
It’s really easy!

• A typical slide has bulleted lists


• These can be uncovered in sequence

8/25
Writing a Simple Slide
It’s really easy!

• A typical slide has bulleted lists


• These can be uncovered in sequence

Code for a Page with an Itemised List


\
begin{fr
ame}
{Writin
ga
Simple
Slide}
\
framesu
btitle{It
's really
8/25 easy!}
Table of Contents
2 Personalization

► Introduction

► Personalization

► Summary

► Reference

9/25
Changing Slide Style
2 Personalization

• You can select the white or maincolor slide style in the preamble with \themecolor{white} (default)
or
\themecolor{main}
— You should not change these within the document: Beamer does not like it
— If you really must, you may have to add \usebeamercolor[fg]{normal text} in the slide
• You can change the footline colour with \footlinecolor{color}
— Place the command before a new frame
— There are four “official” colors: maincolor, sintefyellow, sintefgreen,
sintefdarkgreen
— Default is no footline; you can restore it with \footlinecolor{}
— Others may work, but no guarantees!
— Should not be used with the maincolor theme!

10/25 author1, author2 | Title


Blocks
2 Personalization

Colour Blocks
Standard Blocks
Similar to the ones on the left, but you pick the colour. Text will be white by
These have a color coordinated
default, but you may set it with an optional argument.
with the footline (and grey in the
blue theme) \begin{colorblock}[black]{sinteflightgreen}
{title} content...
\begin{block} \end{colorblock}
{title} content...
The “official” colours of colour blocks are: sinteflilla,
\end{block}
maincolor, sintefdarkgreen, and sintefyellow.

11/25 author1, author2 | Title


Using Colours
2 Personalization

• You can use colours with the \textcolor{<color name>}{text}


command
• The
— colours
Primary are defined in themaincolor
colours: andpackage:
sintefcolor its sintefgrey
sidekick sintefgreen,
— Three shades of green:
Additional colours: sintefyellow, sintefdarkgreen
sintefred, sinteflilla
sinteflightgreen,
◦ These may be shaded—see the sintefcolor documentation or the SINTEF profile manual
• Do not abuse colours: \emph{} is usually enough
• Use \alert{} to bring the focus somewhere

12/25
Using Colours
2 Personalization

• You can use colours with the \textcolor{<color name>}{text}


command
• The
— colours
Primary are defined in themaincolor
colours: andpackage:
sintefcolor its sintefgrey
sidekick sintefgreen,
— Three shades of green:
Additional colours: sintefyellow, sintefdarkgreen
sintefred, sinteflilla
sinteflightgreen,
◦ These may be shaded—see the sintefcolor documentation or the SINTEF profile manual
• Do not abuse colours: \emph{} is usually enough
• Use \alert{} to bring the focus somewhere
• If you highlight too much, you don’t highlight at all!

12/25
Adding images
2 Personalization

Adding images works like in normal LATEX:

Code for Adding Images


\usepackage{graphicx}
% ...
\includegraphics[width=\textwidth]
{assets/logo_RGB}

13/25
Splitting in Columns
2 Personalization

Splitting the page is easy and common; typically, one side has a picture and the other text:
This is the first column And this
the second
Column Code
\begin{columns}
\begin{column}{0.6\
textwidth} This is the
first column
\end{column}
\begin{column}{0.3\
textwidth} And this the
second
\end{column}
% There could be more!
\end{columns}

14/25
Special Slides
2 Personalization

• Chapter slides
• Side-picture slides
Chapter slides
2 Personalization

• Similar to frames, but with a few more options


• Opened with \begin{chapter}[<image>]{<color>}{<title>}
• Image is optional, colour and title are mandatory
• There are seven “official” colours: maincolor, sintefgreen
sintefdarkgreen,
sinteflightgreen, sintefred, sintefyellow, ,
sinteflilla.
— Strangely enough, these are more than the official colours for the footline.
— It may still be a nice touch to change the footline of following slides to the same color of a chapter slide. Your choice.
• Otherwise, chapter behaves just like frame.

16/25 author1, author2 | Title


Side-Picture Slides
2 Personalization

• Opened with \begin{sidepic}{<image>}


{<title>}
• Otherwise, sidepic works just like frame

17/25 author1, author2 | Title


Fonts
2 Personalization

• The paramount task of fonts is being readable


• There are good ones...
— Use serif fonts only with high-definition projectors
— Use sans-serif fonts otherwise (or if you simply prefer them)
• ... and not so good ones:
— Never use monospace for normal text
— Gothic, calligraphic or weird fontŊ should alwayŊ be avoided

18/25
Look
2 Personalization

• To insert a final slide with the title and final thanks, use \backmatter.
— The title also appears in footlines along with the author name, you can change this text with \footlinepayoff
— You can remove the title from the final slide with \backmatter[notitle]
• The aspect ratio defaults to 16:9, and you should not change it to 4:3 for old projectors as it is inherently
impossible to perfectly convert a 16:9 presentation to 4:3 one; spacings will break
— The aspectratio argument to the beamer class is overridden by the SINTEF theme
— If you really know what you are doing, check the package code and look for the geometry class.

19/25
Citation
2 Personalization

• you can cite your reference use \cite{}, e.g. [Bagla, 2005]. The Reference will be shown in the last page.

20/25
Table of Contents
3 Summary

► Introduction

► Personalization

► Summary

► Reference

21/25
Good Luck!
3 Summary

• Enough for an introduction! You should know enough by now


• If you have corrections or suggestions, send them to me!

22/25
Table of Contents
4 Reference

► Introduction

► Personalization

► Summary

► Reference

23/25
References
4 Reference

Bagla, J. S. (2005).
Cosmological n-body simulation: Techniques, scope and status.
Current science, pages 1088–1100.

24/25
Title
Thank you for listening!
Any questions?

25/25

You might also like