platex sample_slide.tex
dvipdfmx -l -p a4 sample_slide.dvi
Last active
March 28, 2019 08:36
-
-
Save hyuki0000/1affe61c02a3163a1d06f980be926cbe to your computer and use it in GitHub Desktop.
LaTeXで作るスライドの例
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[landscape,a4paper,slide]{jsarticle} | |
\usepackage[dvipdfmx]{color} | |
\usepackage[dvipdfmx]{graphicx} | |
\begin{document} | |
\begin{center} | |
\textbf{\Large スライドのタイトル} \\ | |
\textbf{2017年5月9日} | |
\end{center} | |
\section*{話したいこと} | |
\begin{itemize} | |
\item はじめの項目 | |
\item つぎの項目 | |
\item 最後の項目 | |
\end{itemize} | |
\section*{数式の例} | |
\[ | |
f(x) | |
= \frac{a_0}{2} | |
+ \sum_{n=1}^{\infty} | |
\left( | |
a_n \cos \frac{n\pi x}{L} | |
+ b_n \sin \frac{n\pi x}{L} | |
\right) | |
\] | |
\end{document} |
Author
hyuki0000
commented
May 8, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment