Is it possible to make a powerpoint presentation but using LaTeX?
Can you give some useful advices to start with?
The presentation is about chemistry.
Is it possible to make a powerpoint presentation but using LaTeX?
Can you give some useful advices to start with?
The presentation is about chemistry.
As Johannes_B well pointed, the editor that doesn't matter at all. BTW, I used Gummi for this example (yet another LaTeX editor, available in Debian)
What really matter in your case (I guess) is:
$ firefox https://www.ctan.org/pkg/lshort-spanish
$ texdoc beamer
$ texdoc chemfig
$ texdoc everything ...
$ firefox https://en.wikibooks.org/wiki/LaTeX/Mathematics
$ firefox https://www.ctan.org/topic/chemistry
To start with all this mess you need a example of presentation, not a programme. Here you are one with some maths and chemistry to start to play:
\documentclass{beamer}
\usetheme{Madrid}
\usepackage{chemfig}
\setbeamertemplate{navigation symbols}{} % si no los quiero
\setbeamersize{text margin left=2em,text margin right=2em}
\usepackage[utf8]{inputenc}
\title{Mi linda \\ presentación}
\author{Santiago Miranda}
\date{\today}
\begin{document}
\begin{frame}[plain]
\maketitle
\end{frame}
\begin{frame}[plain]
\tableofcontents
\end{frame}
\section{Matemáticas}
\begin{frame}{Una fórrmulas ...}{ ...sin sentido alguno}
Considerando que:
\vfill
\[\sum^j_i = \sqrt{\frac{(x-y)^\epsilon}{\log(\rho)}} \]
\vfill
Y que \ldots
\[ P\left(A=2\middle|\frac{A^2}{B}>4\right) \]
\vfill
Está claro que no tengo ni idea de lo que he escrito.
\end{frame}
\section{Química}
\begin{frame}{Me sube la adrenalina}{(cuando uso Beamer)}
\centering
\chemfig{*6((-HO)-=-(-(<[::60]OH)-[::-60]-[::-60,,,2]
HN-[::+60]CH_3)=-(-HO)=)}
\end{frame}
\begin{frame}{Pero usando otras presentaciones}
{me sube el\ldots}
\centering
\setatomsep{2em}
\chemfig{[:30]R-(=[::+60]O)-[::-60]O-*6(--*6(=--*6(-*5(---(-(-[::+60]Me)
-[::-60]-[::-60]-[::+60]-[::-60](-[::-60]Me)-[::+60]Me)-)-(-[::+0]Me)---)--)-(-[::+0]Me)---)}
\vfill
\visible<2>{\alert{\huge COLESTEROL}}
\end{frame}
\end{document}
powerdotalso, but I've never used it. – Jun 07 '17 at 18:49powerdotand now know why I love Beamer. – TeXnician Jun 07 '17 at 19:07