I am new to Latex especially with beamer... Now I have been trying to compile a file as shown but I got the error of Latex error: Beamerthemesharelatex.sty not found .. I had read instruction about downloading the beamer package and I downloaded it, but I do not understand the read me file at all, which files shall I copy and where to paste .. Please help
\documentclass{beamer}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{times}
\usepackage{amsmath,amsthm, amssymb, latexsym}
\boldmath
\usetheme{Sharelatex}
\usepackage[orientation=portrait,size=a0,scale=1.4]{beamerposter}
\title[Beamer Poster]{ShareLaTeX example of the beamerposter class}
\author[sharelatexteam@sharelate.com]{ShareLaTeX Team}
\institute[Sharelatex University]
{The ShareLaTeX institute, Learn faculty}
\date{\today}
\logo{\includegraphics[height=7.5cm]{SharelatexLogo}}
\begin{document}
\begin{frame}{}
\vfill
\begin{block}{\large Fontsizes}
\centering
{\tiny tiny}\par
{\scriptsize scriptsize}\par
{\footnotesize footnotesize}\par
{\normalsize normalsize}\par
...
\end{block}
\end{block}
\vfill
\begin{columns}[t]
\begin{column}{.30\linewidth}
\begin{block}{Introduction}
\begin{itemize}
\item some items
\item some items
...
\end{itemize}
\end{block}
\end{column}
\begin{column}{.48\linewidth}
\begin{block}{Introduction}
\begin{itemize}
\item some items and $\alpha=\gamma, \sum_{i}$
...
\end{itemize}
$$\alpha=\gamma, \sum_{i}$$
\end{block}
...
\end{column}
\end{columns}
\end{frame}
\end{document}
beameris installed, if it wasn't you would get an error saying "filebeamer.clsnot found" from\documentclass{beamer}. And if you get problems at theframeenvironment, thenbeamerpostermust be installed as well, otherwise you would get an error about "filebeamerposter.stynot found" at\usepackage{beamerposter}. – Torbjørn T. Oct 11 '17 at 16:58\end{block}, remove that and it works fine. – Torbjørn T. Oct 11 '17 at 17:07- For my curiosity I'd like to learn how to install those.
- I am gonna present a conference poster and I'd like to choose the best format, packages and so on.. would you mind suggesting me... because it s my first time with poster in Latex ... even I am not so good in Latex in general.. :).. Thanks,
– Mohamed_refat Oct 11 '17 at 18:32