mirror of
https://github.com/lleene/LLEENE-Latex-Templates.git
synced 2025-07-25 17:58:31 +02:00
Will add examples and improve formatting of style sheets
This commit is contained in:
49
Examples/article.tex
Normal file
49
Examples/article.tex
Normal file
@ -0,0 +1,49 @@
|
||||
% !TEX program = pdflatex
|
||||
% !TEX spellcheck = en_GB
|
||||
% !TEX outputDirectory = tex_output
|
||||
% !TEX enableSynctex = true
|
||||
% !TEX jobNames = article
|
||||
|
||||
\makeatletter
|
||||
\def\input@path{{/home/user_name/MyLatexTemplates/}{../}}
|
||||
\newcommand{\maintitle}{A Nice Paper Title}
|
||||
\newcommand{\mainsubject}{Example Poster}
|
||||
\newcommand{\mainkeywords}{Keywords}
|
||||
\makeatother
|
||||
|
||||
%uncomment to disable hyperref package
|
||||
%\newcommand{\nolinks}{}
|
||||
|
||||
\documentclass[conference]{IEEEtran}
|
||||
\input{journal.preamble.cls}
|
||||
|
||||
\begin{document}
|
||||
\bstctlcite{IEEEexample:BSTcontrol}
|
||||
|
||||
|
||||
\title{\maintitle}
|
||||
\author{\FirstName~\LastName $^\star$ \\%
|
||||
$^\star$\Organisation \\%
|
||||
Email: \Email}%
|
||||
|
||||
%\parskip 0ex plus 0.2ex minus 0.2ex
|
||||
|
||||
\maketitle
|
||||
\IEEEpeerreviewmaketitle
|
||||
|
||||
\begin{abstract} \label{Sec:Abstract}
|
||||
\lipsum[10]
|
||||
\end{abstract}
|
||||
|
||||
\section{Introduction} \label{Sec:Introduction}
|
||||
\lipsum[1-2] \cite{refernce1,refernce2,refernce3,refernce4}
|
||||
|
||||
\section{Discussion} \label{Sec:Discussion}
|
||||
\lipsum[3-5]
|
||||
|
||||
\section{Conclusion} \label{Sec:Conclusion}
|
||||
\lipsum[6]
|
||||
|
||||
\bibliographystyle{IEEEtran}
|
||||
\bibliography{IEEEabrv,local}
|
||||
\end{document}
|
35
Examples/local.bib
Normal file
35
Examples/local.bib
Normal file
@ -0,0 +1,35 @@
|
||||
@BOOK{refernce1,
|
||||
title={Free software, free society: Selected essays of Richard M. Stallman},
|
||||
author={Stallman, Richard},
|
||||
year={2002},
|
||||
publisher={Lulu. com},
|
||||
url={https://www.gnu.org/doc/fsfs3-hardcover.pdf},
|
||||
SN={1882114981}
|
||||
}
|
||||
|
||||
@BOOK{refernce2,
|
||||
title={Free software, free society: Selected essays of Richard M. Stallman},
|
||||
author={Stallman, Richard},
|
||||
year={2002},
|
||||
publisher={Lulu. com},
|
||||
url={https://www.gnu.org/doc/fsfs3-hardcover.pdf},
|
||||
SN={1882114981}
|
||||
}
|
||||
|
||||
@BOOK{refernce3,
|
||||
title={Free software, free society: Selected essays of Richard M. Stallman},
|
||||
author={Stallman, Richard},
|
||||
year={2002},
|
||||
publisher={Lulu. com},
|
||||
url={https://www.gnu.org/doc/fsfs3-hardcover.pdf},
|
||||
SN={1882114981}
|
||||
}
|
||||
|
||||
@BOOK{refernce4,
|
||||
title={Free software, free society: Selected essays of Richard M. Stallman},
|
||||
author={Stallman, Richard},
|
||||
year={2002},
|
||||
publisher={Lulu. com},
|
||||
url={https://www.gnu.org/doc/fsfs3-hardcover.pdf},
|
||||
SN={1882114981}
|
||||
}
|
33
Examples/name_card.tex
Normal file
33
Examples/name_card.tex
Normal file
@ -0,0 +1,33 @@
|
||||
% !TEX program = xelatex
|
||||
% !TEX spellcheck = en_GB
|
||||
% !TEX outputDirectory = tex_output
|
||||
% !TEX enableSynctex = true
|
||||
% !TEX jobNames = namecard
|
||||
|
||||
\makeatletter
|
||||
\def\input@path{{/home/user_name/MyLatexTemplates/}{../}}
|
||||
\newcommand{\maintitle}{\FirstName~\LastName}
|
||||
\newcommand{\mainsubject}{\JobTitle}
|
||||
\newcommand{\mainkeywords}{Name-Card}
|
||||
\def\fontscale{0.8}
|
||||
\makeatother
|
||||
|
||||
%uncomment to disable hyperref package
|
||||
%\newcommand{\nolinks}{}
|
||||
|
||||
\documentclass[letterpaper]{leene-resume} % Use US Letter paper, change to a4paper for A4
|
||||
\input{resume.preamble.cls}
|
||||
|
||||
\usepackage[paperwidth=85mm,paperheight=55mm,margin=6mm,noheadfoot]{geometry}
|
||||
\setlength{\baselineskip}{0cm}
|
||||
\setlength{\topskip}{0pt}
|
||||
|
||||
\ifx\nolinks\undefined
|
||||
\hypersetup{ allcolors = black }
|
||||
\fi
|
||||
|
||||
\begin{document}
|
||||
\makefrontcard{Style/IC_black.pdf}
|
||||
\clearpage
|
||||
\makebackcard{Style/IC_black.pdf}
|
||||
\end{document}
|
66
Examples/poster.tex
Normal file
66
Examples/poster.tex
Normal file
@ -0,0 +1,66 @@
|
||||
% !TEX program = pdflatex
|
||||
% !TEX spellcheck = en_GB
|
||||
% !TEX outputDirectory = tex_output
|
||||
% !TEX enableSynctex = true
|
||||
% !TEX jobNames = poster
|
||||
|
||||
\makeatletter
|
||||
\def\input@path{{/home/user_name/MyLatexTemplates/}{../}}
|
||||
\newcommand{\maintitle}{A Nice Poster Title}
|
||||
\newcommand{\mainsubject}{Example Poster}
|
||||
\newcommand{\mainkeywords}{Keywords}
|
||||
\makeatother
|
||||
|
||||
%uncomment to disable hyperref package
|
||||
%\newcommand{\nolinks}{}
|
||||
|
||||
\documentclass{enginiposter}
|
||||
\input{poster.preamble.cls}
|
||||
\begin{document}
|
||||
\bstctlcite{IEEEexample:BSTcontrol}
|
||||
|
||||
\title{\maintitle}
|
||||
\author{\FirstName~\LastName}
|
||||
\address{\Organisation}
|
||||
\maketitle
|
||||
%prepare the header + introduction using two banners
|
||||
\vspace{\marginlength}
|
||||
|
||||
\contentbanner{ngniharm1}{ngnibg}{
|
||||
\triplecolumn{%
|
||||
\usection{Summary}
|
||||
\lipsum[2]
|
||||
}{%
|
||||
\usection{Itemized Content}
|
||||
\begin{itemize}
|
||||
\item Elaborate Item 1
|
||||
\item Elaborate Item 2
|
||||
\item Elaborate Item 3
|
||||
\item Elaborate Item 4
|
||||
\end{itemize}
|
||||
}{%
|
||||
\includegraphics[width=8cm]{Style/phone.pdf}
|
||||
}}
|
||||
|
||||
\clearbackground
|
||||
|
||||
\doubleframe{\labelitemi header1}{%
|
||||
\lipsum[3]~\cite{refernce1}
|
||||
|
||||
\mdfsubtitle{ \labelitemi header2} \color{black}
|
||||
\lipsum[4]~\cite{refernce2}
|
||||
|
||||
}{\labelitemi header3}{%
|
||||
\lipsum[5]~\cite{refernce3}
|
||||
|
||||
\mdfsubtitle{ \labelitemi header4} \color{black}
|
||||
\lipsum[6]~\cite{refernce4}
|
||||
|
||||
}
|
||||
|
||||
\ngnifooter{\small%
|
||||
\bibliographystyle{IEEEtran}%
|
||||
\bibliography{IEEEabrv,IEEEbst,local}%
|
||||
}%
|
||||
|
||||
\end{document}
|
74
Examples/presentation.tex
Normal file
74
Examples/presentation.tex
Normal file
@ -0,0 +1,74 @@
|
||||
% !TEX program = pdflatex
|
||||
% !TEX spellcheck = en_GB
|
||||
% !TEX outputDirectory = tex_output
|
||||
% !TEX enableSynctex = true
|
||||
% !TEX jobNames = presentation
|
||||
|
||||
\makeatletter
|
||||
\def\input@path{{/home/user_name/MyLatexTemplates/}{../}}
|
||||
\newcommand{\maintitle}{A Nice Presentation Title}
|
||||
\newcommand{\mainsubject}{Example Presentation}
|
||||
\newcommand{\mainkeywords}{Keywords}
|
||||
\makeatother
|
||||
|
||||
% Uncomment if Place Table of Contents only at start
|
||||
% By default TOC outline will be placed at every section
|
||||
%\newcommand{\nosectiontoc}{}
|
||||
|
||||
% Uncomment to disable hyperref package
|
||||
%\newcommand{\nolinks}{}
|
||||
|
||||
% Please un comment one of the two lines for 4:3 or 16:9 paper size
|
||||
\documentclass[10pt,aspectratio=43]{beamer}
|
||||
%\documentclass[10pt,aspectratio=169]{beamer}
|
||||
|
||||
\input{beamer.preamble.cls}
|
||||
|
||||
\begin{document}
|
||||
\bstctlcite{IEEEexample:BSTcontrol}
|
||||
|
||||
%% Put the presentation title here
|
||||
\title{\maintitle}
|
||||
\disablefooter
|
||||
%% Put Author and Institute details here
|
||||
\author{\FirstName~\LastName}
|
||||
\institute{\Organisation \\
|
||||
\href{\Website}{\Website}}%
|
||||
|
||||
\maketitle
|
||||
\inserttoc
|
||||
|
||||
\enablefooter{\maintitle}
|
||||
|
||||
%% Slides Start Here each slide should be made as a frame
|
||||
\section{Example Section1}
|
||||
|
||||
\begin{frame}{An exemplary slide}
|
||||
"If you want to accomplish something in the world, idealism is not enough - you need to choose a method that works to achieve the goal." - Stallman \cite{refernce1,refernce2,refernce3,refernce4}
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{An Item List with a Figure}
|
||||
\itemcolumn{%
|
||||
\item item 1
|
||||
\item item 2
|
||||
\item item 3
|
||||
}{%
|
||||
\begin{figure}
|
||||
\includegraphics[width=0.32\paperwidth]{Style/phone.pdf}
|
||||
\caption{A nice telephone}
|
||||
\end{figure}
|
||||
}
|
||||
\end{frame}
|
||||
|
||||
\section{Example Section2}
|
||||
\begin{frame}
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}[allowframebreaks]
|
||||
\frametitle{References}
|
||||
\footnotesize
|
||||
\bibliographystyle{IEEEtran}%
|
||||
\bibliography{IEEEabrv,IEEEbst,local}%
|
||||
\end{frame}
|
||||
|
||||
\end{document}
|
137
Examples/resume.tex
Normal file
137
Examples/resume.tex
Normal file
@ -0,0 +1,137 @@
|
||||
% !TEX program = xelatex
|
||||
% !TEX spellcheck = en_GB
|
||||
% !TEX outputDirectory = tex_output
|
||||
% !TEX enableSynctex = true
|
||||
% !TEX jobNames = resume
|
||||
|
||||
\makeatletter
|
||||
\def\input@path{{/home/user_name/MyLatexTemplates/}{../}}
|
||||
\newcommand{\maintitle}{\FirstName~\LastName}
|
||||
\newcommand{\mainsubject}{\JobTitle}
|
||||
\newcommand{\mainkeywords}{Resume}
|
||||
\def\fontscale{0.88}
|
||||
\makeatother
|
||||
|
||||
\documentclass[letterpaper]{leene-resume} % Use US Letter paper, change to a4paper for A4
|
||||
\input{resume.preamble.cls}
|
||||
\usepackage[hmargin=1.25cm, vmargin=1.5cm]{geometry} % Specifies horizontal and vertical page margins
|
||||
\begin{document}
|
||||
\lastupdated % Print the Last Updated text at the top right
|
||||
\namesection
|
||||
|
||||
|
||||
|
||||
\narrowcolumn{%
|
||||
|
||||
\section{Education}
|
||||
|
||||
\subsection{1st Elaborate Certification Name}
|
||||
Mon. 20XX | International Institution. Degree/Thesis topic description detailing what was certified or how it specialised.
|
||||
|
||||
\sectionspace % Some whitespace after the section
|
||||
|
||||
\subsection{2nd Elaborate Certification Name}
|
||||
Mon. 20XX | International Institution. Degree/Thesis topic description detailing what was certified or how it specialised.
|
||||
|
||||
\sectionspace % Some whitespace after the section
|
||||
|
||||
\subsection{3rd Elaborate Certification Name}
|
||||
Mon. 20XX | International Institution. Degree/Thesis topic description detailing what was certified or how it specialised.
|
||||
|
||||
\sectionspace
|
||||
|
||||
\section{Personal Interests}
|
||||
\lipsum[11]
|
||||
|
||||
\sectionspace
|
||||
|
||||
\section{Skills}
|
||||
\lipsum[11]
|
||||
|
||||
\subsectionspace
|
||||
|
||||
\section{Links}
|
||||
Company:// \href{github.com/lleene}{Main Website} \\ %
|
||||
Social Media1:// \href{github.com/lleene}{Link/Handle-1} \\ %
|
||||
Social Media2:// \href{github.com/lleene}{Link/Handle-2} \\ %
|
||||
Social Media3:// \href{github.com/lleene}{Link/Handle-3} \\ %
|
||||
Social Media4:// \href{github.com/lleene}{Link/Handle-4} \\ %
|
||||
|
||||
\bigskip
|
||||
|
||||
\includegraphics[width=4cm,trim={0 0 0 -1mm},clip=true]{Style/latex_logo.pdf}
|
||||
|
||||
}%
|
||||
\hfill%
|
||||
\widecolumn{%
|
||||
\section{Profile}
|
||||
|
||||
\lipsum[4]
|
||||
|
||||
\sectionspace
|
||||
|
||||
\section{Employment \& Professional Experience}
|
||||
|
||||
\subsection{Most Recent Job Title | Starting Date – Present }
|
||||
\textcomment{Organisation Name, location of placement position, Country.}
|
||||
|
||||
$\blacktriangleright$ Details regarding your main role stating objectively what you did and what your main objectives where while acting in this position. Being elaborate here important since you must highlight your competence, reliability, and inclination to be involved.
|
||||
|
||||
\smallskip
|
||||
|
||||
$\blacktriangleright$ Details regarding any other role stating objectively what you did and what your main objectives where while acting in this position. Being elaborate here important since you must highlight your competence, reliability, and inclination to be involved.
|
||||
|
||||
\bigskip
|
||||
|
||||
\begin{tightitemize}
|
||||
\item List any other responsibilities or activities you were involved in
|
||||
\item List any other responsibilities or activities you were involved in
|
||||
\item List any other responsibilities or activities you were involved in
|
||||
\end{tightitemize}
|
||||
|
||||
\subsectionspace
|
||||
|
||||
\subsection{Another Job Title | Starting Date – Ending Date}
|
||||
\textcomment{Organisation Name, location of placement position, Country.}
|
||||
|
||||
$\blacktriangleright$ Details regarding your main role stating objectively what you did and what your main objectives where while acting in this position.
|
||||
|
||||
\begin{tightitemize}
|
||||
\item List any other responsibilities or activities you were involved in
|
||||
\item List any other responsibilities or activities you were involved in
|
||||
\item List any other responsibilities or activities you were involved in
|
||||
\end{tightitemize}
|
||||
|
||||
\subsectionspace
|
||||
|
||||
\subsection{Another Job Title | Starting Date – Ending Date}
|
||||
\textcomment{Organisation Name, location of placement position, Country.}
|
||||
|
||||
$\blacktriangleright$ Details regarding your main role stating objectively what you did and what your main objectives where while acting in this position.
|
||||
|
||||
\begin{tightitemize}
|
||||
\item List any other responsibilities or activities you were involved in
|
||||
\item List any other responsibilities or activities you were involved in
|
||||
\item List any other responsibilities or activities you were involved in
|
||||
\end{tightitemize}
|
||||
|
||||
\sectionspace
|
||||
|
||||
\section{List of Outstanding Achievements}
|
||||
\vspace{2mm}
|
||||
\begin{tightitemize}
|
||||
\item List any Award, Publication, Project, or other item for which you would like to receive recognition together with a comment and any hyper link.
|
||||
\item List any Award, Publication, Project, or other item for which you would like to receive recognition together with a comment and any hyper link.
|
||||
\item List any Award, Publication, Project, or other item for which you would like to receive recognition together with a comment and any hyper link.
|
||||
\end{tightitemize}
|
||||
|
||||
|
||||
\sectionspace
|
||||
|
||||
\section{Other Activities / External Involvement}
|
||||
|
||||
\subsection{Title, Organisation, Activity, or Other}
|
||||
\lipsum[4]
|
||||
}
|
||||
|
||||
\end{document}
|
BIN
Examples/tex_output/article.pdf
Normal file
BIN
Examples/tex_output/article.pdf
Normal file
Binary file not shown.
BIN
Examples/tex_output/namecard.pdf
Normal file
BIN
Examples/tex_output/namecard.pdf
Normal file
Binary file not shown.
BIN
Examples/tex_output/poster.pdf
Normal file
BIN
Examples/tex_output/poster.pdf
Normal file
Binary file not shown.
BIN
Examples/tex_output/presentation.pdf
Normal file
BIN
Examples/tex_output/presentation.pdf
Normal file
Binary file not shown.
BIN
Examples/tex_output/resume.pdf
Normal file
BIN
Examples/tex_output/resume.pdf
Normal file
Binary file not shown.
Reference in New Issue
Block a user