mirror of
https://github.com/lleene/LLEENE-Latex-Templates.git
synced 2025-01-22 18:32:22 +01:00
Will add examples and improve formatting of style sheets
This commit is contained in:
parent
7d5530cd5d
commit
a615559191
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.
29
README.md
29
README.md
@ -11,15 +11,32 @@ Personalised set of latex files and utility scripts.
|
||||
- TrueType Fonts used here
|
||||
- Illustrations, Figures, and Style related data
|
||||
|
||||
## How to use these template files
|
||||
- This repository provides a pre-formatted set of latex files for daily use and allows organises the template/style files in a centralised location. To get started, simply include this project directory to your path. This allows the main.tex source files to be organised in a different folder and we can link any scripts common to several projects. In the root document include the following lines:
|
||||
## Using Template Files
|
||||
This repository provides a pre-formatted set of tex files for daily use and organises the template/style files in a centralised location. To get started, simply include this project directory to your path. This allows the main source files to be organised in a different folder such that we can link any scripts common to several projects. In the root document include the following lines:
|
||||
|
||||
``` latex
|
||||
\makeatletter
|
||||
\def\input@path{{/home/user_name/MyLatexTemplates/}{../MyLatexTemplates/}}
|
||||
\makeatother
|
||||
```
|
||||
- Any personal / author details can be edited in the 'personal_details.cls' file which will automatically be sourced by these tex files.
|
||||
- The 'default_symbols.cls' file is a aggregation of preferred latex commands and can be committed/changed depending on your preferences.
|
||||
- So far these files provide a bemer class ngnitheme, a letter class impletter, a letter class leene-resume, and a article class ieeetran.
|
||||
|
||||
Example code will be provided soon...
|
||||
In many cases the latex build system will assume that all files of interest are contained in the directory it is running. The above will simply include remote folders when the compiler is looking for files. It is generally also good practice to specify the root latex file when any additional source coded is included by including the magic statement "% !TEX root = ../main.tex". That will prevent latex trying to build any subcomponent by it self. Bibtex can also link to the common script directory during build time by setting the following shell environment variables:
|
||||
|
||||
``` bash
|
||||
export BIBINPUTS=".;/home/user_name/Latex;$TEXMF/bibtex/bib"
|
||||
export BSTINPUTS=".;/home/user_name/Latex;$TEXMF/bibtex/{bst,csf}"
|
||||
```
|
||||
|
||||
The above setup will works with latexmk which is integrated into many other software packages. Other relevant details are listed below:
|
||||
|
||||
- Any personal / author details can be edited in the 'personal_details.cls' file which will be sourced automatically.
|
||||
- The 'default_symbols.cls' file is a aggregation of preferred latex commands and can be committed/changed depending on your preferences.
|
||||
- So far these files provide a beamer class, twi letter classes, and a duplicate of the ieeetran article class V1.8b.
|
||||
- Topic & Author definitions must always come before loading the style sheet definitions and need to be in the makeatletter environment.
|
||||
- After begin document we can over write any color pallet settings or formatting definitions such as label items.
|
||||
|
||||
### Xelatex and Custom Fonts
|
||||
When using xelatex with custom fonts the font must either be installed on the local machine or preferably linked during compilation. Here style files will specify a font path that should be adjusted depending on your build setup using a relative or absolute path (e.g. Path = /home/$user_name/MyLatexTemplates/Fonts/IBM-Plex-Sans/).
|
||||
|
||||
### Planned Changes
|
||||
Several logos or design components are hard baked into the theme (beamerouterthemengni.sty). At this moment is seem that it is better to simple write a new style for a different set of icons but possibly these can be loaded by reference in future revisions. Please report any bugs or feature requests as this is intended to be a slow work in progress...
|
||||
|
BIN
Style/box.pdf
Normal file
BIN
Style/box.pdf
Normal file
Binary file not shown.
78
Style/latex_logo.pdf
Normal file
78
Style/latex_logo.pdf
Normal file
@ -0,0 +1,78 @@
|
||||
%PDF-1.5
|
||||
%µí®û
|
||||
4 0 obj
|
||||
<< /Length 5 0 R
|
||||
/Filter /FlateDecode
|
||||
>>
|
||||
stream
|
||||
xœuX[®í&ýg™@)oÈ0î*¤sû³?ÚÎ_ê²1<C2B2>8;:ÒÙY+&ãøÃáï<0F>Ñ{ëk:[;úÇüc¿ú÷÷ñç_îøýŸñ-ÙPãáS³ùøwìk¶-–¯¨›ŠÇ˜`ÏPÌáKµ5¶#„d+}Ä51`âþ`šÿòh X²õ±®—%ñL!`FŸÄâWMÖ•0¡ -ílne"<22>Å•xœÅzKPl&á]µ1¤ØßÞg¶‹ #Ç*+4°5“Íùñœ<C3B1>=‹<÷#ÖýLµŽg·?ääÉ͉ÝVi=bs°üoÀ`’ÈŸ8Â$}Ú\ÓDÑÛ*ésÂvöôXÛoñ<›L47v¨±ä†
tŸ¯ÜEèÆÆl¯|>õË3¹¬/ÐJaͨ¸¡nŽ¿!óc|ÅS<±ñlDµ'²1ÃƵØìíÆlM+±¶6$KSá3äü±®°‡8LåS´Þ…!V*E#ôãpuÉ–@{{Ú?jÑ–ó\°kbBQÐ(ܵ€<C2B5>Å:¬ï
÷ɘ§ˆL©1†„lsö[¾H ÁçD>i6‘<1D>ül3eüS¬ø”G€#Þa“«©c¶5áÓl*Ÿ¬ƒçkÜŸg³)<29>MÐÅP’: ³ÿÜQ4étÚ÷ >dÏN¶q`õ3lœ˜tJzó*fá¹A
|
||||
¯—$_ÜØ¡Üß%¦^Š¸™KÉ™w÷
cD<)Wš-ÛÏ\ìI³"®)y$U
|
||||
Êþ`nákîâˆx„ YÀÈŽŸCyœ<79>Áe[Èóî“1[$æ¯ÏýþFÍsƒæ»n?&Qà#cŒ\ú9î8ÀשCýŽ)mVð!O_W°?Þ#Ôè÷+$}LîPs¡‘·“C1ÜPJ"×Ç Q:c‡Æûàd¯'N¬¬Ç†±öÑ)…‹6xÂ9f'ÄOäÏÅ,y¤P.|
|
||||
ï 4qðSÁf¤€<C2A4>¦fk+ÍtK鳕ÞD¤DiL“î3Šm ¢5JfØŠ
c)Å<>.hJàô;qòŽS€LBz)jcÑSãþ`h’ÌŽu'.CH/*’Kba1ùÄcSÌuÈÜ7Ás[ïð"Ÿ8Êšå6ÈWž
|
||||
Ür«êF·kŽ½wÁbSlÛkMBTpöLJ£ì‹Ó'Ô'Jì+ˆ‘¡<>+jî˜äïÄ=¼ïˆ2„N?¦@ö+€4ÿš)hÖfŸþ
£‡Fh6J—í
%»âFËQ}ª÷GFaæØÜLv<4C>l4AKm•ƒÉ$Øšõ@M¥ÞjaÈÁŒYÔñgeÕ5î&û—`£ ^Ê92Õ‚bLu‰<0\1<1C>hÄ`Ì¢2¼.p0}ÇýUBZ£‰Ë<E280B0>ÉL=ÞðE¯Ù¦®¥Á*'ºˆµxÁýÁ,û
l4q5±‚Œ<E2809A>$ÿÀ—}”3Òô„ê’–â*»&r^y‡æ"<22><>#<23>¢`bJ©ÔOÓÚ
|
||||
~)v}nk]31áä¨7D4îO dCÒé»`.<2E>f⮢îvM˜‰eM
|
||||
vM$=忯ÐH¢¡Â9ÐQQ‡E)›ò˜@9p°ü<C2B0>L±˜8ÃM<C383>‰÷<E280B0>pÖ5Ý
|
||||
vQh¥ó æŠÞp“0r3R¶€àþ`
|
||||
NŧƒÌ×Zä‘Oï˜òò3ÿ˜J5Šï
2›åsh¦âlÉ3<C389>Kq€†iKã¼|Tº¼ÀÑñJõ¬…ñ»n1á¸J´ïî¯+ŠÆÇÒ'êßß®K”ùv)R©w'bÌPq"nÜʳ?L¸û¶Å$®i¹Àg6d-‘iœ¨¹ìš¨aÔOd–F'î;&ù;Q_Ô´b~j@Äæ7?š-4]ÔŠ—zò<7A>>TÎiŽ>°oÂsKV<4B>Ù¸ –Å;?.‰¶u³¬'Pl{C¤Ì86Ž;%UÖ<55><C396>êÉ€rT’ç²2Þº`â»5j¢(eÎ^±YP”Q°?ÞãÐK“|…91ŽÄ+Ø£F÷<1C>›Ð’F=€)GŠQDÅlã\c’«±p0%ÇÑ’¢`d…<64>aJ’JwZ¸T¡Ó¤ß·”ÅÍ›ÈÙ¯jFð¾rZ«[×LAÌVøÛf3½‰ÌYƈrŽîa¦ Ò6ô‚©Éc„˜+í¢ðšKIãÆêòÞPÔao\Ž¯Mº¦ŽŠýåÝD(4÷§šm.7µïäèeba
|
||||
ß6Ž;h9),+V–ùÖƒJÁDH{ìf<11>o©÷ãÖEÌPÑùÜš¼7p ¬
œùjž•(éRs²0•È‰ÈN
‹!<>3—¦O·ääƒs
|
||||
ÍÞ'§%°¢™†Ð:/ž©ðÐký<12>/ð9©—r\CXð‰sÜJÑÅH}2»@©‚E¥îYÖ~Ì/ó?⪹¦
|
||||
endstream
|
||||
endobj
|
||||
5 0 obj
|
||||
1786
|
||||
endobj
|
||||
3 0 obj
|
||||
<<
|
||||
/ExtGState <<
|
||||
/a0 << /CA 1 /ca 1 >>
|
||||
>>
|
||||
>>
|
||||
endobj
|
||||
2 0 obj
|
||||
<< /Type /Page % 1
|
||||
/Parent 1 0 R
|
||||
/MediaBox [ 0 0 840.375 311.174988 ]
|
||||
/Contents 4 0 R
|
||||
/Group <<
|
||||
/Type /Group
|
||||
/S /Transparency
|
||||
/I true
|
||||
/CS /DeviceRGB
|
||||
>>
|
||||
/Resources 3 0 R
|
||||
>>
|
||||
endobj
|
||||
1 0 obj
|
||||
<< /Type /Pages
|
||||
/Kids [ 2 0 R ]
|
||||
/Count 1
|
||||
>>
|
||||
endobj
|
||||
6 0 obj
|
||||
<< /Producer (cairo 1.16.0 (https://cairographics.org))
|
||||
/CreationDate (D:20190709113138+01'00)
|
||||
>>
|
||||
endobj
|
||||
7 0 obj
|
||||
<< /Type /Catalog
|
||||
/Pages 1 0 R
|
||||
>>
|
||||
endobj
|
||||
xref
|
||||
0 8
|
||||
0000000000 65535 f
|
||||
0000002202 00000 n
|
||||
0000001973 00000 n
|
||||
0000001901 00000 n
|
||||
0000000015 00000 n
|
||||
0000001878 00000 n
|
||||
0000002267 00000 n
|
||||
0000002383 00000 n
|
||||
trailer
|
||||
<< /Size 8
|
||||
/Root 7 0 R
|
||||
/Info 6 0 R
|
||||
>>
|
||||
startxref
|
||||
2435
|
||||
%%EOF
|
12
Style/latex_logo.svg
Normal file
12
Style/latex_logo.svg
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg"
|
||||
version="1.0" width="1200" height="500" overflow="scroll">
|
||||
<title>LaTeX logo</title>
|
||||
<g transform="matrix(45,0,0,45,40,40)" fill="black">
|
||||
<path transform="translate(0,0.17)" d="M5.46,4.23 C5.46,4.23 5.21,4.23 5.21,4.23 C5.11,5.25 4.97,6.49 3.21,6.49 C3.21,6.49 2.4,6.49 2.4,6.49 C1.93,6.49 1.91,6.42 1.91,6.09 C1.91,6.09 1.91,0.78 1.91,0.78 C1.91,0.44 1.91,0.3 2.85,0.3 C2.85,0.3 3.18,0.3 3.18,0.3 C3.18,0.3 3.18,0 3.18,0 C2.82,0.03 1.92,0.03 1.51,0.03 C1.12,0.03 0.34,0.03 0,0 C0,0 0,0.3 0,0.3 C0,0.3 0.23,0.3 0.23,0.3 C1,0.3 1.02,0.41 1.02,0.77 C1.02,0.77 1.02,6.02 1.02,6.02 C1.02,6.38 1,6.49 0.23,6.49 C0.23,6.49 0,6.49 0,6.49 C0,6.49 0,6.8 0,6.8 C0,6.8 5.19,6.8 5.19,6.8 C5.19,6.8 5.46,4.23 5.46,4.23 z"/>
|
||||
<path transform="translate(2.48)" d="M2.81,0.16 C2.77,0.04 2.75,0 2.62,0 C2.49,0 2.46,0.04 2.42,0.16 C2.42,0.16 0.81,4.24 0.81,4.24 C0.74,4.41 0.62,4.72 0,4.72 C0,4.72 0,4.97 0,4.97 C0,4.97 1.55,4.97 1.55,4.97 C1.55,4.97 1.55,4.72 1.55,4.72 C1.24,4.72 1.05,4.58 1.05,4.38 C1.05,4.33 1.06,4.31 1.08,4.24 C1.08,4.24 1.42,3.38 1.42,3.38 C1.42,3.38 3.4,3.38 3.4,3.38 C3.4,3.38 3.8,4.4 3.8,4.4 C3.82,4.44 3.84,4.49 3.84,4.52 C3.84,4.72 3.46,4.72 3.27,4.72 C3.27,4.72 3.27,4.97 3.27,4.97 C3.27,4.97 5.24,4.97 5.24,4.97 C5.24,4.97 5.24,4.72 5.24,4.72 C5.24,4.72 5.1,4.72 5.1,4.72 C4.63,4.72 4.58,4.65 4.51,4.45 C4.51,4.45 2.81,0.16 2.81,0.16 z M2.41,0.87 C2.41,0.87 3.3,3.13 3.3,3.13 C3.3,3.13 1.52,3.13 1.52,3.13 C1.52,3.13 2.41,0.87 2.41,0.87 z"/>
|
||||
<path transform="translate(7.03,0.23)" d="M6.27,0 C6.27,0 0.18,0 0.18,0 C0.18,0 0,2.24 0,2.24 C0,2.24 0.24,2.24 0.24,2.24 C0.38,0.63 0.53,0.3 2.04,0.3 C2.22,0.3 2.48,0.3 2.58,0.32 C2.79,0.36 2.79,0.47 2.79,0.7 C2.79,0.7 2.79,5.95 2.79,5.95 C2.79,6.29 2.79,6.43 1.74,6.43 C1.74,6.43 1.34,6.43 1.34,6.43 C1.34,6.43 1.34,6.74 1.34,6.74 C1.75,6.71 2.76,6.71 3.22,6.71 C3.68,6.71 4.71,6.71 5.12,6.74 C5.12,6.74 5.12,6.43 5.12,6.43 C5.12,6.43 4.72,6.43 4.72,6.43 C3.67,6.43 3.67,6.29 3.67,5.95 C3.67,5.95 3.67,0.7 3.67,0.7 C3.67,0.5 3.67,0.36 3.85,0.32 C3.96,0.3 4.23,0.3 4.42,0.3 C5.92,0.3 6.07,0.63 6.21,2.24 C6.21,2.24 6.46,2.24 6.46,2.24 C6.46,2.24 6.27,0 6.27,0 z"/>
|
||||
<path transform="translate(12.5,2.45)" d="M6.16,4.2 C6.16,4.2 5.91,4.2 5.91,4.2 C5.66,5.73 5.43,6.46 3.72,6.46 C3.72,6.46 2.4,6.46 2.4,6.46 C1.93,6.46 1.91,6.39 1.91,6.06 C1.91,6.06 1.91,3.4 1.91,3.4 C1.91,3.4 2.8,3.4 2.8,3.4 C3.77,3.4 3.88,3.72 3.88,4.57 C3.88,4.57 4.13,4.57 4.13,4.57 C4.13,4.57 4.13,1.93 4.13,1.93 C4.13,1.93 3.88,1.93 3.88,1.93 C3.88,2.78 3.77,3.09 2.8,3.09 C2.8,3.09 1.91,3.09 1.91,3.09 C1.91,3.09 1.91,0.7 1.91,0.7 C1.91,0.37 1.93,0.3 2.4,0.3 C2.4,0.3 3.68,0.3 3.68,0.3 C5.21,0.3 5.47,0.85 5.63,2.24 C5.63,2.24 5.88,2.24 5.88,2.24 C5.88,2.24 5.6,0 5.6,0 C5.6,0 0,0 0,0 C0,0 0,0.3 0,0.3 C0,0.3 0.23,0.3 0.23,0.3 C1,0.3 1.02,0.41 1.02,0.77 C1.02,0.77 1.02,5.99 1.02,5.99 C1.02,6.35 1,6.46 0.23,6.46 C0.23,6.46 0,6.46 0,6.46 C0,6.46 0,6.77 0,6.77 C0,6.77 5.74,6.77 5.74,6.77 C5.74,6.77 6.16,4.2 6.16,4.2 z"/>
|
||||
<path transform="translate(17.91,0.17)" d="M3.76,2.95 C3.76,2.95 5.13,0.95 5.13,0.95 C5.34,0.63 5.68,0.31 6.57,0.3 C6.57,0.3 6.57,0 6.57,0 C6.57,0 4.19,0 4.19,0 C4.19,0 4.19,0.3 4.19,0.3 C4.59,0.31 4.81,0.53 4.81,0.76 C4.81,0.86 4.79,0.88 4.72,0.99 C4.72,0.99 3.58,2.67 3.58,2.67 C3.58,2.67 2.3,0.75 2.3,0.75 C2.28,0.72 2.23,0.64 2.23,0.6 C2.23,0.48 2.45,0.31 2.87,0.3 C2.87,0.3 2.87,0 2.87,0 C2.53,0.03 1.8,0.03 1.42,0.03 C1.11,0.03 0.49,0.02 0.12,0 C0.12,0 0.12,0.3 0.12,0.3 C0.12,0.3 0.31,0.3 0.31,0.3 C0.86,0.3 1.05,0.37 1.24,0.65 C1.24,0.65 3.07,3.42 3.07,3.42 C3.07,3.42 1.44,5.83 1.44,5.83 C1.3,6.03 1,6.49 0,6.49 C0,6.49 0,6.8 0,6.8 C0,6.8 2.38,6.8 2.38,6.8 C2.38,6.8 2.38,6.49 2.38,6.49 C1.92,6.48 1.75,6.21 1.75,6.03 C1.75,5.94 1.78,5.9 1.85,5.79 C1.85,5.79 3.26,3.7 3.26,3.7 C3.26,3.7 4.84,6.08 4.84,6.08 C4.86,6.12 4.89,6.16 4.89,6.19 C4.89,6.31 4.67,6.48 4.24,6.49 C4.24,6.49 4.24,6.8 4.24,6.8 C4.59,6.77 5.32,6.77 5.69,6.77 C6.11,6.77 6.57,6.78 6.99,6.8 C6.99,6.8 6.99,6.49 6.99,6.49 C6.99,6.49 6.8,6.49 6.8,6.49 C6.28,6.49 6.07,6.44 5.86,6.13 C5.86,6.13 3.76,2.95 3.76,2.95 z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.1 KiB |
@ -23,11 +23,10 @@
|
||||
\usepackage{graphicx} % figures, graphics, etc.
|
||||
\usepackage{latexsym} % Optional extra symbols from LaTeX2.09
|
||||
\usepackage{amsmath,amssymb} % Math formatting & symbols
|
||||
|
||||
\usepackage{subfigure} % Introduce Subfigures
|
||||
\usepackage{cite} % Citation handle
|
||||
\usepackage{xcolor} % Colour
|
||||
\usepackage{booktabs}
|
||||
\usepackage{subfigure} % Introduce sub-figures
|
||||
\usepackage{cite} % Citation handle
|
||||
\usepackage{xcolor} % Colour formatting
|
||||
\usepackage{booktabs} % Tabe formatting
|
||||
|
||||
\makeatletter
|
||||
\def\bstctlcite{\@ifnextchar[{\@bstctlcite}{\@bstctlcite[@auxout]}}
|
||||
@ -66,7 +65,7 @@
|
||||
\newlength{\tpagewidth}
|
||||
\setlength{\tpagewidth}{0.27\paperwidth}
|
||||
|
||||
\newcommand{\itmcol}[2]{%
|
||||
\newcommand{\itemcolumn}[2]{%
|
||||
\begin{minipage}{\dpagewidth} \flushleft
|
||||
\begin{itemize}
|
||||
#1
|
||||
@ -78,7 +77,7 @@
|
||||
\end{minipage}
|
||||
}
|
||||
|
||||
\newcommand{\enmcol}[2]{%
|
||||
\newcommand{\enumcolumn}[2]{%
|
||||
\begin{minipage}{\dpagewidth} \flushleft
|
||||
\begin{enumerate}
|
||||
#1
|
||||
@ -90,7 +89,7 @@
|
||||
\end{minipage}
|
||||
}
|
||||
|
||||
\newcommand{\dblcol}[2]{%
|
||||
\newcommand{\doublecolumn}[2]{%
|
||||
\begin{minipage}{\dpagewidth} \flushleft
|
||||
#1
|
||||
\end{minipage}%
|
||||
@ -100,7 +99,7 @@
|
||||
\end{minipage}
|
||||
}
|
||||
|
||||
\newcommand{\tplcol}[3]{%
|
||||
\newcommand{\triplecolumn}[3]{%
|
||||
\begin{minipage}{\tpagewidth} \flushleft
|
||||
#1
|
||||
\end{minipage}%
|
||||
@ -114,19 +113,19 @@
|
||||
\end{minipage}
|
||||
}
|
||||
|
||||
\newcommand{\sglenum}[1]{%
|
||||
\newcommand{\singleenum}[1]{%
|
||||
\begin{enumerate}
|
||||
#1
|
||||
\end{enumerate}
|
||||
}
|
||||
|
||||
\newcommand{\sglitm}[1]{%
|
||||
\newcommand{\singleitem}[1]{%
|
||||
\begin{itemize}
|
||||
\item #1
|
||||
\end{itemize}
|
||||
}
|
||||
|
||||
\newcommand{\dblenm}[2]{%
|
||||
\newcommand{\doubleenum}[2]{%
|
||||
\begin{minipage}{\dpagewidth} \flushleft
|
||||
\begin{enumerate}
|
||||
#1
|
||||
@ -140,7 +139,7 @@
|
||||
\end{minipage}
|
||||
}
|
||||
|
||||
\newcommand{\dblitm}[2]{%
|
||||
\newcommand{\doubleitem}[2]{%
|
||||
\begin{minipage}{\dpagewidth} \flushleft
|
||||
\begin{itemize}
|
||||
#1
|
||||
@ -155,7 +154,7 @@
|
||||
}
|
||||
|
||||
\newcommand{\inserttoc}[0]{
|
||||
\ifsectiontoc
|
||||
\ifx\nosectiontoc\undefined
|
||||
\else
|
||||
\begin{frame}{Table of Contents}
|
||||
\tableofcontents
|
||||
@ -163,16 +162,4 @@
|
||||
\fi
|
||||
}
|
||||
|
||||
\newcommand{\enablefooter}[1]{
|
||||
%% Put the Footer Subtitle Here
|
||||
\subtitle{#1}
|
||||
%% This shows some Footer graphics
|
||||
\titlegraphic{\includegraphics[height=2.5ex, trim=1mm 2mm 20mm -1mm]{Style/banner_name_white.pdf}\includegraphics[width=2cm, angle=90, trim=-14mm -3mm 0mm 0mm]{Style/banner_icon.pdf}}
|
||||
}
|
||||
|
||||
\newcommand{\disablefooter}[0]{
|
||||
\subtitle{}
|
||||
\titlegraphic{}
|
||||
}
|
||||
|
||||
\input{default_symbols.cls}
|
||||
|
@ -3,59 +3,40 @@
|
||||
% Modified by Lieuwe Leene, June 2019
|
||||
|
||||
\mode<presentation>
|
||||
\newcommand{\FrontLogoA}{Style/IC_blue.pdf}
|
||||
\newcommand{\FrontLogoB}{Style/main_logo.pdf}
|
||||
\newcommand{\FootLogoA}{Style/banner_name_white.pdf}
|
||||
\newcommand{\FootLogoB}{Style/banner_icon.pdf}
|
||||
\newcommand{\BaseBackground}{Style/KM1801VM2_I.png}
|
||||
|
||||
\newlength{\marginlength}%
|
||||
\setlength{\marginlength}{0.5cm}%
|
||||
|
||||
%% This formats the title page
|
||||
\ifwideas %% this is a 16:9 paper format
|
||||
\setbeamercolor{basic}{bg=white,fg=white}
|
||||
\defbeamertemplate*{title page}{ngnitheme}{
|
||||
\begin{beamercolorbox}[wd=\paperwidth, ht=\paperheight]{basic}
|
||||
\setlength{\unitlength}{\paperwidth}%
|
||||
\begin{picture}(1,1)%
|
||||
%\put(0,0){\includegraphics[width=\paperwidth,clip=true,trim={0 0 0 3.5cm}]{Style/KM1801VM2_I.png}}
|
||||
\put(0.04,0.25){%
|
||||
\begin{minipage}{0.8\paperwidth}
|
||||
|
||||
\begin{beamercolorbox}[wd=\paperwidth]{basic}
|
||||
|
||||
\hspace{\marginlength} \parbox[c]{\dimexpr (\paperwidth-2\marginlength) \relax}{ %
|
||||
\includegraphics[height=0.125\paperheight]{\FrontLogoA} %
|
||||
\hfill %
|
||||
\includegraphics[height=0.125\paperheight]{\FrontLogoB} %
|
||||
}
|
||||
\vspace{\marginlength} \\
|
||||
\hspace{\marginlength} \parbox[c]{\textwidth}{%
|
||||
\begin{flushleft}
|
||||
\usebeamercolor[black]{title}
|
||||
\usebeamerfont{title}\inserttitle\par
|
||||
\usebeamerfont{subtitle}\insertsubtitle\par
|
||||
\bigskip
|
||||
\usebeamerfont{author}\insertauthor\par
|
||||
\usebeamerfont{institute}\insertinstitute\par
|
||||
\end{flushleft}
|
||||
\end{minipage}
|
||||
}
|
||||
\put(0.03,0.465){\includegraphics[height=0.125\paperheight]{Style/IC_blue.pdf}}
|
||||
\put(0.86,0.465){\includegraphics[height=0.15\paperheight]{Style/main_logo.pdf}}
|
||||
\end{picture}
|
||||
\usebeamercolor[black]{title}
|
||||
\usebeamerfont{title}\inserttitle\par
|
||||
\usebeamerfont{subtitle}\insertsubtitle\par
|
||||
\bigskip
|
||||
\usebeamerfont{author}\insertauthor\par
|
||||
\bigskip
|
||||
\usebeamerfont{institute}\insertinstitute\par
|
||||
\end{flushleft}}
|
||||
\end{beamercolorbox}
|
||||
\vskip 0pt%
|
||||
}
|
||||
\else %% this is a 4:3 paper format
|
||||
\setbeamercolor{basic}{bg=white,fg=white}
|
||||
\defbeamertemplate*{title page}{ngnitheme}{
|
||||
\begin{beamercolorbox}[wd=\paperwidth, ht=\paperheight]{basic}
|
||||
\setlength{\unitlength}{\paperwidth}%
|
||||
\begin{picture}(1,1)%
|
||||
%\put(0,0){\includegraphics[width=\paperwidth]{Style/KM1801VM2_I.png}}
|
||||
\put(0.04,0.3){%
|
||||
\begin{minipage}{0.8\paperwidth}
|
||||
\begin{flushleft}
|
||||
\usebeamercolor[black]{title}
|
||||
\usebeamerfont{title}\inserttitle\par
|
||||
\usebeamerfont{subtitle}\insertsubtitle\par
|
||||
\bigskip
|
||||
\usebeamerfont{author}\insertauthor\par
|
||||
\usebeamerfont{institute}\insertinstitute\par
|
||||
\end{flushleft}
|
||||
\end{minipage}
|
||||
}
|
||||
\put(0.03,0.61){\includegraphics[height=0.125\paperheight]{Style/IC_blue.pdf}}
|
||||
\put(0.82,0.615){\includegraphics[height=0.15\paperheight]{Style/main_logo.pdf}}
|
||||
\end{picture}
|
||||
\end{beamercolorbox}
|
||||
\vskip 0pt%
|
||||
}
|
||||
\fi
|
||||
|
||||
|
||||
%% This formats the the footer on every page
|
||||
@ -74,7 +55,7 @@
|
||||
\vskip 0pt%
|
||||
}
|
||||
|
||||
\ifsectiontoc
|
||||
\ifx\nosectiontoc\undefined
|
||||
\AtBeginSection[]
|
||||
{
|
||||
\disablefooter
|
||||
@ -85,21 +66,16 @@
|
||||
}
|
||||
\fi
|
||||
|
||||
\defbeamertemplate*{intermission}{ngnitheme}{
|
||||
\begin{beamercolorbox}[wd=\paperwidth, ht=\paperheight]{basic}
|
||||
\setlength{\unitlength}{\paperwidth}%
|
||||
\begin{picture}(1,1)%
|
||||
\put(0,0){\includegraphics[width=\paperwidth,clip=true,trim={0 0 0 0cm}]{Style/KM1801VM2_I.png}}
|
||||
\put(0.04,0.2){%
|
||||
\begin{minipage}{0.8\paperwidth}
|
||||
\begin{centering}
|
||||
TITLE NAME
|
||||
\end{centering}
|
||||
\end{minipage}
|
||||
}
|
||||
\end{picture}
|
||||
\end{beamercolorbox}
|
||||
\vskip 0pt%
|
||||
\newcommand{\enablefooter}[1]{
|
||||
%% Put the Footer Subtitle Here
|
||||
\subtitle{#1}
|
||||
%% This shows some Footer graphics
|
||||
\titlegraphic{\includegraphics[height=2.5ex, trim=1mm 2mm 20mm -1mm]{\FootLogoA}\includegraphics[width=2cm, angle=90, trim=-14mm -3mm 0mm 0mm]{\FootLogoB}}
|
||||
}
|
||||
|
||||
\newcommand{\disablefooter}[0]{
|
||||
\subtitle{}
|
||||
\titlegraphic{}
|
||||
}
|
||||
|
||||
\mode
|
||||
|
25
default_packages.cls
Normal file
25
default_packages.cls
Normal file
@ -0,0 +1,25 @@
|
||||
\usepackage{latexsym} % Optional extra symbols from LaTeX2.09
|
||||
\usepackage{amsmath,amssymb} % Math formatting & symbols
|
||||
%Specific for AMSMATH - (re)allows page breaks within aligned equations as IEEEtran normally does.
|
||||
\interdisplaylinepenalty=2500
|
||||
\usepackage{graphicx} % figures, graphics, etc.
|
||||
\usepackage{subfigure} % Introduce sub-figures
|
||||
\usepackage{cite} % Citation handle
|
||||
\usepackage{xcolor} % Colour
|
||||
\usepackage[nomessages]{fp} % More advanced command customization
|
||||
\usepackage{booktabs} % Tabe formatting
|
||||
\usepackage{lipsum}
|
||||
|
||||
\ifx\nolinks\undefined
|
||||
\usepackage[pdfauthor={\FirstName~\LastName},
|
||||
pdftitle={\maintitle},
|
||||
pdfsubject={\mainsubject},
|
||||
pdfkeywords={\mainkeywords},
|
||||
colorlinks = true,hypertexnames=true]{hyperref}
|
||||
\hypersetup{
|
||||
colorlinks,
|
||||
linkcolor={red!75!black},
|
||||
citecolor={blue!60!black},
|
||||
urlcolor={blue!80!black}
|
||||
}
|
||||
\fi
|
144
enginiposter.cls
144
enginiposter.cls
@ -5,95 +5,103 @@
|
||||
\ProvidesClass{enginiposter}[2018/09/30 Engini Latex Poster Template.]
|
||||
\LoadClass[portrait]{a0poster}
|
||||
|
||||
\makeatletter
|
||||
\def\bstctlcite{\@ifnextchar[{\@bstctlcite}{\@bstctlcite[@auxout]}}
|
||||
\def\@bstctlcite[#1]#2{\@bsphack
|
||||
\@for\@citeb:=#2\do{%
|
||||
\edef\@citeb{\expandafter\@firstofone\@citeb}%
|
||||
\if@filesw\immediate\write\csname #1\endcsname{\string\citation{\@citeb}}\fi}%
|
||||
\@esphack}
|
||||
\makeatother
|
||||
|
||||
% color definitions
|
||||
\RequirePackage{xcolor}
|
||||
\definecolor{ngniprimary}{RGB}{33,48,79}
|
||||
\definecolor{ngniharm1}{RGB}{48,33,79}
|
||||
\definecolor{ngnibg}{RGB}{245,245,255}
|
||||
\definecolor{ngniharm2}{RGB}{33,79,64}
|
||||
|
||||
% set lengths
|
||||
% set lengths: what about geometry margins?
|
||||
\newlength{\marginlength}%
|
||||
\setlength{\marginlength}{2cm}
|
||||
\setlength{\unitlength}{\paperwidth}%
|
||||
|
||||
\RequirePackage{graphicx}
|
||||
\RequirePackage[margin=\marginlength,bottom=-5mm]{geometry}
|
||||
\RequirePackage[margin=\marginlength,bottom=0mm]{geometry}
|
||||
\RequirePackage{mdframed}
|
||||
\mdfdefinestyle{ngniframe}{linecolor=ngniharm2, linewidth=10pt,topline=false,rightline=false,bottomline=false,backgroundcolor=ngnibg,font=\Large,fontcolor=black,frametitlefont=\huge\bfseries\color{ngnibg},frametitlebackgroundcolor=ngniharm1,frametitleaboveskip=25pt,frametitlebelowskip=25pt,subtitlebackgroundcolor=ngniharm1,subtitlefont=\huge\bfseries\color{ngnibg},subtitleinneraboveskip=25pt,subtitleinnerbelowskip=25pt,innertopmargin=25pt,innerbottommargin=25pt,innerleftmargin=50pt,innerrightmargin=50pt}
|
||||
\mdfdefinestyle{ngniframe}{linecolor=ngniharm2, linewidth=5pt,topline=false,rightline=false,bottomline=false,backgroundcolor=ngnibg,font=\Large,fontcolor=black,frametitlefont=\huge\bfseries\color{ngnibg},frametitlebackgroundcolor=ngniharm1,frametitleaboveskip=25pt,frametitlebelowskip=25pt,subtitlebackgroundcolor=ngniharm1,subtitlefont=\huge\bfseries\color{ngnibg},subtitleinneraboveskip=25pt,subtitleinnerbelowskip=25pt,innertopmargin=25pt,innerbottommargin=25pt,innerleftmargin=50pt,innerrightmargin=50pt}
|
||||
|
||||
|
||||
|
||||
\def\@intro{}
|
||||
\newcommand{\intro}[1]{\def\@intro{#1}}
|
||||
\newcommand{\usection}[1]{\section*{#1}\addcontentsline{toc}{section}{#1}}
|
||||
\newcommand{\fullbanner}[3]{%
|
||||
\noindent\hspace{-1\marginlength}%
|
||||
\colorbox{#1}{\color{#2}%
|
||||
\begin{minipage}{\paperwidth}%
|
||||
#3
|
||||
\end{minipage}}}
|
||||
|
||||
\RequirePackage{amssymb}
|
||||
\renewcommand{\labelitemi}{\raisebox{0.05em}{$\blacktriangleright\:$}}
|
||||
\renewcommand{\labelitemii}{$\bullet\:$}
|
||||
\renewcommand{\labelitemiii}{$\cdot\:$}
|
||||
|
||||
%make title banne with given hight
|
||||
\renewcommand{\maketitle}[3]{
|
||||
|
||||
\newlength{\trimlength}%
|
||||
\setlength{\trimlength}{0.35\paperwidth}
|
||||
\setlength{\trimlength}{#1\trimlength}
|
||||
\addtolength{\trimlength}{-18cm}
|
||||
|
||||
% Top Banner
|
||||
\makeatletter
|
||||
\newcommand{\address}[1]{\gdef\@address{#1}}
|
||||
%make title banner with given hight
|
||||
\renewcommand{\maketitle}{ % Prepares Top Banner
|
||||
% Edit this such that it can include multiple figures in iteration
|
||||
\noindent\hspace{1.33cm}\hspace{-1\marginlength}%
|
||||
\begin{picture}(1, 0.04)%
|
||||
\put(0,0){\includegraphics[height=4.5cm]{Style/IC_blue.pdf}}
|
||||
\put(0.25,0){\includegraphics[height=4.5cm]{Style/banner_long.pdf}}
|
||||
\put(0.835,0){\includegraphics[height=4.5cm]{Style/epsrc-bw.pdf}}
|
||||
\end{picture}
|
||||
%\colorbox{white}{%
|
||||
\includegraphics[height=4.5cm]{Style/IC_blue.pdf}%
|
||||
\hfill%
|
||||
\includegraphics[height=4.5cm]{Style/banner_long.pdf}%
|
||||
\hfill%
|
||||
\includegraphics[height=4.5cm]{Style/epsrc-bw.pdf}%
|
||||
%}
|
||||
|
||||
% Title Banner
|
||||
\noindent\hspace{-0.06cm}\hspace{-1\marginlength}%
|
||||
\begin{picture}(1, #1)%
|
||||
\put(0,0){\includegraphics[width=\paperwidth, trim={0 0 0 -\trimlength}, clip=true]{Style/background_neuron.pdf}}
|
||||
\put(0,#2){%
|
||||
\colorbox{ngniprimary}{
|
||||
\begin{minipage}{\paperwidth}%
|
||||
\begin{center}
|
||||
\vspace{1cm}
|
||||
\veryHuge \color{ngnibg} \bf \@title \\
|
||||
\bigskip
|
||||
\Large \color{ngnibg} \bf \@author
|
||||
\vspace{0.5cm}
|
||||
\end{center}%
|
||||
\end{minipage}}}
|
||||
\end{picture}
|
||||
\vspace{2cm}
|
||||
\noindent\hspace{-1\marginlength}%
|
||||
\includegraphics[width=\paperwidth, trim={0cm 17cm 0cm 0cm}]{Style/background_neuron.pdf}
|
||||
\vspace{2cm}
|
||||
|
||||
% Abstract Banner
|
||||
\noindent\hspace{-0.05cm}\hspace{-1\marginlength}%
|
||||
\begin{picture}(1,0)
|
||||
\put(0,#3){%
|
||||
\colorbox{ngniprimary}{
|
||||
\begin{minipage}{\paperwidth}
|
||||
\vspace{1cm}
|
||||
\color{ngnibg}
|
||||
\Large
|
||||
\centering
|
||||
\@intro
|
||||
\vspace{1.5cm}
|
||||
\end{minipage}
|
||||
}}
|
||||
\end{picture}
|
||||
}
|
||||
\fullbanner{ngniharm1}{ngnibg}{%
|
||||
\begin{center}
|
||||
\bigskip
|
||||
\veryHuge \noindent \ignorespaces \color{ngnibg} {\bf\@title} \par
|
||||
\bigskip
|
||||
\Large \noindent \ignorespaces \color{ngnibg} \bf\@author \par
|
||||
\Large \noindent \ignorespaces \color{ngnibg} \bf\@address \par
|
||||
\bigskip
|
||||
\end{center}}}
|
||||
\makeatother
|
||||
|
||||
\newcommand{\clearbackground}{%
|
||||
\noindent\hspace{-1\marginlength}%
|
||||
\includegraphics[width=\paperwidth, trim={0cm 10.58cm 0cm 0cm}]{Style/box.pdf}%
|
||||
\vspace{\marginlength}}
|
||||
|
||||
|
||||
\newcommand{\ngnifooter}[1]{
|
||||
\vfill
|
||||
\noindent\hspace{-0.05cm}\hspace{-1\marginlength}%
|
||||
\colorbox{ngniharm1}{\begin{picture}(1,0.09)
|
||||
\put(0.854,0.005){\colorbox{white}{\includegraphics[height=8cm,clip=true,trim=-10mm -10mm -10mm -10mm]{Style/main_logo.pdf}}}
|
||||
\put(0.0218,0.005){\colorbox{white}{\includegraphics[height=8cm,width=2cm,clip=true,trim=10cm 0 0 0]{Style/main_logo.pdf}}}
|
||||
\put(0.06,0.045){%
|
||||
\begin{minipage}{0.75\paperwidth}
|
||||
\color{ngnibg}
|
||||
#1
|
||||
\end{minipage}}
|
||||
\end{picture}}
|
||||
}
|
||||
% Prepares a banner for the end-section with content
|
||||
\newcommand{\ngnifooter}[1]{\vfill%
|
||||
\fullbanner{ngniharm1}{ngnibg}{%
|
||||
\begin{minipage}{6cm}%
|
||||
\hspace{\marginlength}
|
||||
\colorbox{white}{\rule{\marginlength}{0pt}\rule{0pt}{8cm}}
|
||||
\hfill
|
||||
\end{minipage}%
|
||||
\begin{minipage}{0.75\paperwidth}\vspace{8mm}%
|
||||
#1
|
||||
\end{minipage}%
|
||||
\hfill
|
||||
\begin{minipage}{14cm}%
|
||||
\colorbox{white}{\includegraphics[height=8cm,trim={-2mm -2mm -2mm -2mm}]{Style/main_logo.pdf}}%
|
||||
\hfill%
|
||||
\end{minipage}%
|
||||
}}
|
||||
|
||||
\newcommand{\contentbanner}[3]{%
|
||||
\noindent\hspace{-1\marginlength}%
|
||||
\colorbox{#1}{\color{#2}%
|
||||
\hspace{\marginlength}
|
||||
\begin{minipage}{\dimexpr (\paperwidth-2\marginlength) \relax}%
|
||||
\bigskip
|
||||
#3
|
||||
\bigskip
|
||||
\end{minipage}}}
|
||||
|
@ -10,27 +10,7 @@
|
||||
% PACKAGES - Comment any package deemed unnecessary %
|
||||
% % % % % % % % % % % % % % % % % % % % % % % % % % % %
|
||||
|
||||
\usepackage{graphicx} % figures, graphics, etc.
|
||||
\usepackage{verbatim} % Allow comments \begin{comment} and \end{comment}
|
||||
\usepackage{latexsym} % Optional extra symbols from LaTeX2.09
|
||||
\usepackage{amsmath,amssymb} % Math formatting & symbols
|
||||
|
||||
%Specific for AMSMATH - (re)allows page breaks within aligned equations as IEEEtran normally does.
|
||||
\interdisplaylinepenalty=2500
|
||||
|
||||
\usepackage{subfigure} % Introduce Subfigures
|
||||
\usepackage{cite} % Citation handle
|
||||
\usepackage[table,dvipsnames]{xcolor} % Colour
|
||||
\usepackage[nomessages]{fp} % More advanced command customization
|
||||
\usepackage{booktabs}
|
||||
|
||||
\iflinks
|
||||
\usepackage[pdfauthor={\FirstName~\LastName},
|
||||
pdftitle={\pdftitle},
|
||||
pdfsubject={\pdfsubject},
|
||||
pdfkeywords={\pdfkeywords},
|
||||
colorlinks = true,hypertexnames=true]{hyperref}
|
||||
\fi
|
||||
\input{default_packages.cls}
|
||||
|
||||
% % % % % % % % % % % % % % % % % % % %
|
||||
% DOCUMENT - configuration / commands %
|
||||
@ -49,16 +29,6 @@
|
||||
\newlength{\lcbox}
|
||||
\setlength{\lcbox}{10cm}
|
||||
|
||||
\iflinks
|
||||
% Configure Hyperlink Colours and inline references
|
||||
\hypersetup{
|
||||
colorlinks,
|
||||
linkcolor={red!75!black},
|
||||
citecolor={blue!60!black},
|
||||
urlcolor={blue!80!black}
|
||||
}
|
||||
\fi
|
||||
|
||||
\input{default_symbols.cls}
|
||||
|
||||
%%%%% sections without index %%%%%%%
|
||||
|
@ -28,9 +28,7 @@
|
||||
|
||||
\providecommand{\fontscale}{1} % load default if not set
|
||||
\setmainfont
|
||||
% [Path = /home/lbl11/Latex/Fonts/IBM-Plex-Sans/,
|
||||
% [Path = ../Latex/Fonts/IBM-Plex-Sans/,
|
||||
[Path = ../../Latex/Fonts/IBM-Plex-Sans/,
|
||||
[Path = ../Fonts/IBM-Plex-Sans/,
|
||||
Scale=\fontscale,
|
||||
UprightFont = *-Regular,
|
||||
ItalicFont = *-Italic,
|
||||
@ -57,7 +55,7 @@
|
||||
\setlength{\TPHorizModule}{0.01\paperwidth} % Sets the units for the horizontal position used in the \begin{textblock} argument
|
||||
\setlength{\TPVertModule}{0.01\paperwidth} % Sets the units for the vertical position used in the \begin{textblock} argument
|
||||
\newcommand{\lastupdated}{ % Create a new command for printing the Last Updated text
|
||||
\begin{textblock}{50}(70,13.5 ) % The position of the Last Updated text on the page (75% of the page across, 2% down)
|
||||
\begin{textblock}{23}(75,13.5) % The position of the Last Updated text on the page
|
||||
\flushleft{
|
||||
\color{date}\fontseries{l}\selectfont \small \selectfont % Text styling of the text
|
||||
Last Updated on \today } % Last Updated text
|
||||
@ -67,17 +65,17 @@ Last Updated on \today } % Last Updated text
|
||||
% MAIN HEADING COMMAND
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\newcommand{\makefrontcard}{ % Defines the command for the main heading
|
||||
\newcommand{\makefrontcard}[1]{ % Defines the command for the main heading
|
||||
\setlength{\unitlength}{12mm}
|
||||
\flushleft
|
||||
\begin{picture}(1,1)
|
||||
\put(0,0.2){\includegraphics[height=10mm]{Style/IC_black.eps}}
|
||||
\put(0,0.2){\includegraphics[height=10mm]{#1}}
|
||||
\end{picture}
|
||||
\vfill
|
||||
\textbf{{\Large \FirstName\:~\LastName} \hspace{2mm}\ {\small \Certification}}\\
|
||||
\Title\\
|
||||
\JobTitle\\
|
||||
\vspace{2mm}
|
||||
{\small
|
||||
\small
|
||||
{\fontseries{t}\selectfont \Group} \\
|
||||
{\fontseries{t}\selectfont \Address} \\
|
||||
\vspace{2mm}
|
||||
@ -86,13 +84,13 @@ Last Updated on \today } % Last Updated text
|
||||
{\fontseries{l}\selectfont \includegraphics[height=2mm]{Style/phone.pdf}%
|
||||
\,\Telephone \hspace{2cm}\includegraphics[height=2mm]{Style/envelope.pdf}\,\Email } \\
|
||||
{\fontseries{l}\selectfont \Website }
|
||||
}}
|
||||
}
|
||||
|
||||
\newcommand{\makebackcard}{ % paperwidth=85mm,paperheight=55mm
|
||||
\newcommand{\makebackcard}[1]{ % paperwidth=85mm,paperheight=55mm
|
||||
\begin{figure}
|
||||
\centering
|
||||
\setlength{\fboxrule}{0pt}
|
||||
\includegraphics[width=60mm]{Style/IC_black.eps}
|
||||
\includegraphics[width=60mm]{#1}
|
||||
\end{figure}
|
||||
}
|
||||
|
||||
@ -104,10 +102,10 @@ Last Updated on \today } % Last Updated text
|
||||
{\fontseries{m}\selectfont \LastName} % Last name font
|
||||
\vspace{0.45cm}} \\[5pt] % Whitespace between the name and contact information
|
||||
|
||||
\begin{textblock}{30}(70,4)
|
||||
\begin{textblock}{23}(75,4)
|
||||
\vline
|
||||
\flushleft{\color{headings}%
|
||||
{\fontseries{l}\selectfont Address:} \Address \\
|
||||
{\fontseries{l}\selectfont Address:} \Address \\
|
||||
{\fontseries{l}\selectfont Mobile:} \Telephone \\
|
||||
{\fontseries{l}\selectfont Email:} \Email \\ }
|
||||
\end{textblock}
|
||||
|
@ -1,14 +1,16 @@
|
||||
%% Default Author details used by scripts
|
||||
%% Several fields below can accommodate URL links
|
||||
\newcommand{\Salutation}{Dr.}
|
||||
\newcommand{\FirstName}{Lieuwe}
|
||||
\newcommand{\LastName}{Leene}
|
||||
\newcommand{\Certification}{PhD}
|
||||
\newcommand{\Email}{l.leene@ic.ac.uk}
|
||||
\newcommand{\Title}{Research Associate}
|
||||
\newcommand{\Group}{Next Generation Neural Interfaces Lab}
|
||||
\newcommand{\Organisation}{Centre for Bio-Inspired Technology \\ Department of Electrical and Electronic Engineering}
|
||||
\newcommand{\Address}{Dept. EEE, Exhibition Road \\ London, SW7 2AZ, UK}
|
||||
\newcommand{\Telephone}{+44 (0)75447575250}
|
||||
\newcommand{\LinkedIn}{lieuwe-leene}
|
||||
\newcommand{\Website}{www.imperial.ac.uk/neural-interfaces}
|
||||
\makeatletter
|
||||
\newcommand{\Salutation}{Mr.}
|
||||
\newcommand{\FirstName}{John}
|
||||
\newcommand{\LastName}{Dough}
|
||||
\newcommand{\Certification}{MEng}
|
||||
\newcommand{\Email}{j.dough@baker.br}
|
||||
\newcommand{\JobTitle}{Technical Oven Assistant}
|
||||
\newcommand{\Group}{Main Baking staff for Bread}
|
||||
\newcommand{\Organisation}{A Baking Company for Bread, Anytown, USA}
|
||||
\newcommand{\Address}{123 Main St, Anytown, 90210 USA}
|
||||
\newcommand{\Telephone}{+88 (0)8888 888888}
|
||||
\newcommand{\LinkedIn}{john-dough}
|
||||
\newcommand{\Website}{www.baker.br/oven-corner}
|
||||
\makeatother
|
||||
|
88
poster.preamble.cls
Normal file
88
poster.preamble.cls
Normal file
@ -0,0 +1,88 @@
|
||||
%Modified Latex Style sheet preamble for ENGNI Poster
|
||||
%Lieuwe B. Leene 2019 July
|
||||
|
||||
\input{personal_details.cls} %% Load author details
|
||||
|
||||
% % % % % % % % % % % % % % % % % % % % % % % % % % % %
|
||||
% PACKAGES - Comment any package deemed unnecessary %
|
||||
% % % % % % % % % % % % % % % % % % % % % % % % % % % %
|
||||
|
||||
\input{default_packages.cls}
|
||||
|
||||
\input{default_symbols.cls} %% Load author details
|
||||
|
||||
%%%%% sections without index %%%%%%%
|
||||
\newcommand{\usection}[1]{
|
||||
\section*{#1}
|
||||
\addcontentsline{toc}{section}{#1}
|
||||
}
|
||||
|
||||
\newcommand{\usubsection}[1]{
|
||||
\subsection*{#1}
|
||||
\addcontentsline{toc}{subsection}{#1}
|
||||
}
|
||||
|
||||
\newlength{\dpagewidth}
|
||||
\setlength{\dpagewidth}{0.46\paperwidth}
|
||||
\newlength{\tpagewidth}
|
||||
\setlength{\tpagewidth}{0.28\paperwidth}
|
||||
|
||||
\newcommand{\doubleframe}[4]{%
|
||||
\noindent
|
||||
\begin{minipage}{\dpagewidth}%
|
||||
\begin{mdframed}[style = ngniframe, frametitle = #1]
|
||||
#2
|
||||
\end{mdframed}
|
||||
\end{minipage}%
|
||||
\hfill%
|
||||
\begin{minipage}{\dpagewidth}%
|
||||
\begin{mdframed}[style = ngniframe, frametitle = #3]
|
||||
#4
|
||||
\end{mdframed}
|
||||
\end{minipage}%
|
||||
}
|
||||
|
||||
\newcommand{\tripleframe}[6]{%
|
||||
\noindent
|
||||
\begin{minipage}{\tpagewidth}%
|
||||
\begin{mdframed}[\sectionheader{#1}]
|
||||
#2
|
||||
\end{mdframed}
|
||||
\end{minipage}%
|
||||
\hfill %
|
||||
\begin{minipage}{\tpagewidth}%
|
||||
\begin{mdframed}[\sectionheader{#3}]
|
||||
#4
|
||||
\end{mdframed}
|
||||
\end{minipage}%
|
||||
\hfill%
|
||||
\begin{minipage}{\tpagewidth}%
|
||||
\begin{mdframed}[\sectionheader{#5}]
|
||||
#6
|
||||
\end{mdframed}
|
||||
\end{minipage}%
|
||||
}
|
||||
|
||||
\newcommand{\doublecolumn}[2]{%
|
||||
\begin{minipage}{\dpagewidth}
|
||||
#1
|
||||
\end{minipage}%
|
||||
\hfill%
|
||||
\begin{minipage}{\dpagewidth}
|
||||
#2
|
||||
\end{minipage}
|
||||
}
|
||||
|
||||
\newcommand{\triplecolumn}[3]{%
|
||||
\begin{minipage}{\tpagewidth}
|
||||
#1
|
||||
\end{minipage}%
|
||||
\hfill%
|
||||
\begin{minipage}{\tpagewidth}
|
||||
#2
|
||||
\end{minipage}
|
||||
\hfill%
|
||||
\begin{minipage}{\tpagewidth}
|
||||
#3
|
||||
\end{minipage}
|
||||
}
|
@ -4,20 +4,20 @@
|
||||
%Please See http://www.michaelshell.org/tex/ieeetran/ For details
|
||||
|
||||
\input{personal_details.cls} %% Load author details
|
||||
\input{default_packages.cls} %% Load standard package setup
|
||||
|
||||
% % % % % % % % % % % % % % % % % % % % % % % % % % % %
|
||||
% PACKAGES - Comment any package deemed unnecessary %
|
||||
% % % % % % % % % % % % % % % % % % % % % % % % % % % %
|
||||
\newcommand{\narrowcolumn}[1]{%
|
||||
\begin{minipage}[t]{0.33\textwidth} % The left column takes up 33% of the text width of the page
|
||||
#1%
|
||||
\end{minipage} % The end of the left column
|
||||
}
|
||||
|
||||
\usepackage{amsmath,amssymb} % Math formatting & symbols
|
||||
\usepackage{graphicx}
|
||||
\usepackage{qrcode}
|
||||
\newcommand{\widecolumn}[1]{%
|
||||
\begin{minipage}[t]{0.62\textwidth} % The left column takes up 33% of the text width of the page
|
||||
#1
|
||||
\end{minipage} % The end of the left column
|
||||
}
|
||||
|
||||
\usepackage[pdfauthor={\FirstName~\LastName},
|
||||
pdftitle={C.V.~\FirstName~\LastName},
|
||||
pdfsubject={Curriculum Vitae/Resume},
|
||||
pdfkeywords={IC designer, Mixed signal, Data converter, System-On-Chip, Imperial College, Research associate},
|
||||
colorlinks = true, allcolors = blue ]{hyperref}
|
||||
%\newcommand{\MYhref}[3][blue]{\href{#2}{\color{#1}{#3}}}%
|
||||
\newcommand{\textcomment}[1]{{\fontseries{l}\selectfont \small #1}}
|
||||
|
||||
\input{default_symbols.cls} %% Load author details
|
||||
|
Loading…
x
Reference in New Issue
Block a user