Compare commits

12 Commits

Author SHA1 Message Date
9409194aca dont track TT derived front files 2024-11-25 11:55:54 +01:00
aa0f02912b add instructions for groff 2024-11-25 11:54:36 +01:00
4ed6c9fcf1 utility script for generating groff fonts 2024-11-10 14:29:58 +01:00
930f8a83c6 add keywords to details 2024-11-08 14:21:11 +01:00
c44a98a8b7 minor adjust ment for resume 2024-11-03 17:26:21 +01:00
b29014a3eb minor edits from 2020 2024-01-02 19:34:48 +01:00
76ec3b8e4d minor update to file organization 2024-01-02 19:18:37 +01:00
c4b9280f22 Minor cleanup and added new beamer style 2024-01-02 19:17:44 +01:00
0370c5ba1c Merge to git (#1)
* Minor cleanup and added new beamer style

* minor update to file organization

* Use unix line endings

---------

Co-authored-by: Lieuwe Leene <lieuwe@leene.dev>
2024-01-02 19:06:28 +01:00
c82c280379 🤐 2021-08-29 10:04:36 +02:00
a065700b5a Merge branch 'master' of https://github.com/lleene/LLEENE-Latex-Templates 2021-08-29 10:02:41 +02:00
331a20f96f insert specific beamer templates 2021-08-29 10:01:06 +02:00
35 changed files with 1247 additions and 979 deletions

5
.gitattributes vendored Normal file
View File

@ -0,0 +1,5 @@
* text=auto
*.md text eol=lf
*.rtf text eol=lf
*.cls text eol=lf
*.tex text eol=lf

8
.gitignore vendored
View File

@ -1,3 +1,11 @@
## Personal Files and Details
Examples/tex_output
Documents/
## Generated font files
*.afm
*.pfa
## Core latex/pdflatex auxiliary files:
*.aux
*.lof

View File

@ -7,12 +7,12 @@
\makeatletter
\def\input@path{{/home/user_name/MyLatexTemplates/}{../}}
\newcommand{\maintitle}{A Nice Paper Title}
\newcommand{\mainsubject}{Example Poster}
\newcommand{\mainsubject}{Example Poster}
\newcommand{\mainkeywords}{Keywords}
\makeatother
%uncomment to disable hyperref package
%\newcommand{\nolinks}{}
%\newcommand{\nolinks}{}
\documentclass[conference]{IEEEtran}
\input{journal.preamble.cls}

View File

@ -7,14 +7,14 @@
\makeatletter
\def\input@path{{/home/user_name/MyLatexTemplates/}{../}}
\newcommand{\maintitle}{Letter Title}
\newcommand{\mainsubject}{Example Letter}
\newcommand{\mainsubject}{Example Letter}
\newcommand{\mainkeywords}{Keywords}
\makeatother
\newcommand{\placelogo}{Style/latex_logo.pdf}
\documentclass[blank]{impletter}
\input{letter.preamble.cls}
\begin{document}
\begin{document}
\bstctlcite{IEEEexample:BSTcontrol}
\headers{

View File

@ -5,7 +5,7 @@
% !TEX jobNames = namecard
\makeatletter
\def\input@path{{/home/user_name/MyLatexTemplates/}{../}}
\def\input@path{{../}}
\newcommand{\maintitle}{\FirstName~\LastName}
\newcommand{\mainsubject}{\JobTitle}
\newcommand{\mainkeywords}{Name-Card}

View File

@ -1,14 +1,14 @@
% !TeX program = pdflatex
% !TeX program = xelatex
% !TeX spellcheck = en_GB
% !TEX outputDirectory = tex_output
% !TEX enableSynctex = true
% !TEX jobNames = notice
\makeatletter
\def\input@path{{/home/user_name/MyLatexTemplates/}{../}}
\def\input@path{{../}}
\newcommand{\maintitle}{Equipment Notice}
\newcommand{\mainsubject}{Admin Notice}
\newcommand{\mainkeywords}{Notice, Administration}
\newcommand{\mainkeywords}{Notice, Administration}
\makeatother
\title{This Storage is for Server Equipment Only}

View File

@ -7,7 +7,7 @@
\makeatletter
\def\input@path{{/home/user_name/MyLatexTemplates/}{../}}
\newcommand{\maintitle}{A Nice Presentation Title}
\newcommand{\mainsubject}{Example Presentation}
\newcommand{\mainsubject}{Example Presentation}
\newcommand{\mainkeywords}{Keywords}
\makeatother

View File

@ -7,7 +7,7 @@
\makeatletter
\def\input@path{{/home/user_name/MyLatexTemplates/}{../}}
\newcommand{\maintitle}{\FirstName~\LastName}
\newcommand{\mainsubject}{\JobTitle}
\newcommand{\mainsubject}{\JobTitle}
\newcommand{\mainkeywords}{Resume}
\def\fontscale{0.88}
\makeatother
@ -19,8 +19,6 @@
\lastupdated % Print the Last Updated text at the top right
\namesection
\narrowcolumn{%
\section{Education}

View File

@ -1,4 +0,0 @@
%%BeginFeature *PageSize ISOA0/ISO A0
2 dict dup /PageSize [2594 3370] put dup /ImagingBBox null put
setpagedevice
%%EndFeature

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

25
Fonts/groff_font.sh Executable file
View File

@ -0,0 +1,25 @@
#!/usr/bin/env bash
for font_file in $(find . -regextype posix-extended -iregex ".*-(italic|bold|regular)+.ttf");
do fontforge -lang=ff -c "Open(\"$font_file\");Generate(\"${font_file/ttf/pfa}\")";
done
MAP_FILE="/usr/share/groff/current/font/devps/generate/textmap"
ENC_FILE="/usr/share/groff/current/font/devps/text.enc"
FONT_FAMILY="${PWD##*/}"
for afm_file in ./*afm; do
FONT_TYPE="R"
if [[ "${afm_file,,}" == *"italic"* ]] ; then FONT_TYPE="I" ; fi
if [[ "${afm_file,,}" == *"bold"* ]] ; then FONT_TYPE="B" ; fi
if [[ "${afm_file,,}" == *"bolditalic"* ]] ; then FONT_TYPE="BI" ; fi
afmtodit -e $ENC_FILE $afm_file $MAP_FILE "${FONT_FAMILY}${FONT_TYPE}"
done
# Place the generated font file in your .local directory
# and set GROFF_FONT_PATH="$HOME/.local/share/groff/site-font" during compile
#
# $HOME/.local/share/groff/site-font/devpdf:
# IBM-Plex-SansB IBM-Plex-SansBI IBM-Plex-SansI IBM-Plex-SansR
# $HOME/.local/share/groff/site-font/devps:
# IBM-Plex-SansB IBM-Plex-SansBI IBM-Plex-SansI IBM-Plex-SansR

View File

@ -1,93 +1,93 @@
Copyright (c) 2010, Santiago Orozco (hi@typemade.mx)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
Copyright (c) 2010, Santiago Orozco (hi@typemade.mx)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.

View File

@ -1,93 +1,93 @@
Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.

1030
IEEEfull.bib Executable file → Normal file

File diff suppressed because it is too large Load Diff

BIN
Style/xethru_logo_black.pdf Normal file

Binary file not shown.

BIN
Style/xethru_logo_blue.pdf Normal file

Binary file not shown.

BIN
Style/xethru_logo_white.pdf Normal file

Binary file not shown.

View File

@ -1,15 +1,13 @@
% Modified Beamer Style sheet for NGNI publications
% Last edited by: Lieuwe B. Leene 2017 August
% Modified by Lieuwe Leene, June 2019
% Modified Beamer Style sheet for internal presentations
% Created by: Lieuwe B. Leene 2017 August
% Modified by Lieuwe Leene, Jan. 2020
%% Before using the beamer preamble which prepares a standardised NGNI format.
%% Before using the beamer preamble which prepares a standardised XETHRU format.
%% There are a few comments regarding the file structure
%% beamer.preamble.tex will prepares latex packages/commands
%% beamerthemengni.sty formats the general style of the template fonts & colors
%% beamerouterthemengni.tsy formats slide specific things such as title & Footer
\usefonttheme{professionalfonts}
%% beamerthemexethru.sty formats the general style of the template fonts & colors
%% beamerouterthemexethru.tsy formats slide specific things such as title & Footer
\input{personal_details.cls} %% Load author details
@ -39,10 +37,53 @@
\@esphack}
\makeatother
\definecolor{ngniblue}{RGB}{34,57,106}
\definecolor{ngnired}{RGB}{218,30,37}
\definecolor{ngniwhite}{RGB}{240,240,255}
\definecolor{ngniblack}{RGB}{0,0,30}
%\definecolor{ngniblue}{RGB}{34,57,106}
%\definecolor{ngnired}{RGB}{218,30,37}
%\definecolor{ngniwhite}{RGB}{240,240,255}
%\definecolor{ngniblack}{RGB}{0,0,30}
%\definecolor{xethrublack}{RGB}{20,0,20}
%\definecolor{xethruwhite}{RGB}{255,240,255}
%\definecolor{xethrublue}{RGB}{47,26,69}
% % % % % % % % % % % % % % %
% BEAMER - font selection %
% % % % % % % % % % % % % % %
\usepackage{ifxetex}
\ifxetex
\usepackage{fontspec} % Required for specifying custom fonts in XeLaTeX
\providecommand{\fontscale}{1} % load default if not set
\setmainfont
[Path = ../../Fonts/IBM-Plex-Sans/,
Scale=\fontscale,
UprightFont = *-Regular,
ItalicFont = *-Italic,
BoldFont = *-Bold,
BoldItalicFont = *-BoldItalic,
FontFace = {t}{n}{*-Thin},
FontFace = {t}{it}{*-ThinItalic},
FontFace = {l}{n}{*-Light},
FontFace = {l}{it}{*-LightItalic},
FontFace = {sb}{n}{*-SemiBold},
FontFace = {sb}{it}{*-SemiBoldItalic},
FontFace = {m}{n}{*-Medium},
FontFace = {m}{it}{*-MediumItalic},
FontFace = {b}{n}{*-Bold},
FontFace = {b}{it}{*-BoldItalic},
Ligatures=TeX]
{IBMPlexSans}
\renewcommand{\baselinestretch}{\fontscale}
\setbeamerfont{frametitle}{family=\fontspec{IBMPlexSans}}
\setbeamerfont{framesubtitle}{family=\fontspec{IBMPlexSans}}
\setbeamerfont{title}{family=\fontspec{IBMPlexSans}}
\setbeamerfont{caption}{family=\fontspec{IBMPlexSans}}
\setbeamerfont{author}{family=\fontspec{IBMPlexSans}}
\setbeamerfont{institute}{family=\fontspec{IBMPlexSans}}
\setbeamerfont{date}{family=\fontspec{IBMPlexSans}}
\else
\usefonttheme{professionalfonts}
\fi
% % % % % % % % % % % % % % % % % % % %
% BEAMER - configuration / settings %
@ -53,11 +94,13 @@
\mode<presentation>
{
\usetheme{ngni}
\usetheme{xethru}
\setbeamercovered{transparent}
\setbeamertemplate{items}[circle]
}
\newcommand{\highlight}[1]{\textcolor{blue}{#1}}
% % % % % % % % % % % % % % % % % % % %
% DOCUMENT - configuration / commands %
% % % % % % % % % % % % % % % % % % % %
@ -155,6 +198,24 @@
\end{minipage}
}
\newcommand{\sectionslide}[1]{
\section{#1}
\begin{frame}
\centering
\usebeamerfont{title}\secname\par
\end{frame}
}
\newcommand{\subsectionslide}[1]{
\subsection{#1}
\begin{frame}
\centering
\usebeamerfont{subtitle} \secname \par
\bigskip
\usebeamerfont{title} \subsecname\par
\end{frame}
}
\newcommand{\inserttoc}[0]{
\ifx\nosectiontoc\undefined
\else
@ -166,10 +227,30 @@
\newcommand{\linkwebsite}{
\ifx\nolinks\undefined
\href{\Website}{\Website}
\href{https://\Website}{\Website}
\else
\Website
\fi
}
\newcommand{\insertbib}[1]{
\begin{frame}[allowframebreaks]
\frametitle{References}
\footnotesize
\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,IEEEbst,#1}
\end{frame}
}
%% Put Author details here
\newcommand{\inserttitlepage}[0]{
\disablefooter
\institute{\Group \\
\Organisation \\
\href{\Website}{\Website}}%
\maketitle
\inserttoc
\enablefooter{\maintitle}
}
\input{default_symbols.cls}

View File

@ -0,0 +1,79 @@
% Modified Beamer Style sheet for Xethru publications
% Created by: Lieuwe B. Leene 2020 Jan
\mode<presentation>
\newcommand{\FrontLogoA}{Style/xethru_logo_blue.pdf}
\newcommand{\FootLogoA}{Style/xethru_logo_white.pdf}
%\newcommand{\BaseBackground}{Style/KM1801VM2_I.png}
\newlength{\marginlength}%
\setlength{\marginlength}{0.5cm}%
%% This formats the title page
\setbeamercolor{basic}{bg=white,fg=white}
\defbeamertemplate*{title page}{xethrutheme}{
\begin{beamercolorbox}[wd=\paperwidth]{basic}
%% Insert Background Here
\hspace{\marginlength} \parbox[c]{\dimexpr (\paperwidth-2\marginlength) \relax}{ %
\includegraphics[height=0.4\paperheight, trim={0 0 0 -5cm}]{\FrontLogoA}
}
\vspace{1.5\marginlength} \\
\hspace{\marginlength} \parbox[c]{\textwidth}{%
\begin{flushleft}
\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%
}
%% This formats the the footer on every page
\defbeamertemplate*{footline}{xethrutheme}{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=\paperwidth,ht=5ex,dp=2.5ex]{footnote}%
\usebeamerfont{footnote}
\hspace{5mm} \today
\hfill
\insertsubtitle
\hfill
\insertframenumber{} / \inserttotalframenumber\hspace*{2ex}
\inserttitlegraphic \hspace*{2ex}
\end{beamercolorbox}}%
\vskip 0pt%
}
\ifx\nosectiontoc\undefined
\AtBeginSection[]
{
\disablefooter
\begin{frame}{Outline}
\tableofcontents[currentsection]
\end{frame}
\enablefooter{\inserttitle}
}
\fi
\newcommand{\enablefooter}[1]{
%% Put the Footer Subtitle Here
\subtitle{#1}
%% This shows some Footer graphics
\titlegraphic{\includegraphics[height=4ex,trim={0 5cm 0 -4cm}]{\FootLogoA}}
}
\newcommand{\disablefooter}[0]{
\subtitle{}
\titlegraphic{}
}
\mode
<all>

55
beamerthemexethru.sty Normal file
View File

@ -0,0 +1,55 @@
% Modified Beamer Style sheet for Xethru publications
% Created by: Lieuwe B. Leene 2020 Jan
\mode<presentation>
\newif\ifbeamer@secheader
\beamer@secheaderfalse
\DeclareOptionBeamer{secheader}{\beamer@secheadertrue}
\ProcessOptionsBeamer
\useoutertheme{xethru}
% color definitions
\definecolor{xethrublack}{RGB}{20,0,20}
\definecolor{xethruwhite}{RGB}{255,240,255}
\definecolor{xethrusecondary}{RGB}{10,10,40}
% footer styling
\setbeamerfont{footnote}{size=\scriptsize}
\setbeamercolor{footnote}{fg=white,bg=xethrusecondary}
% set the title color
\setbeamercolor{title}{fg=xethruwhite}
\setbeamerfont{title}{size=\LARGE}
\setbeamercolor{author}{fg=xethruwhite}
\setbeamerfont{author}{size=\normalsize}
\setbeamercolor{institute}{fg=xethruwhite}
\setbeamerfont{institute}{size=\normalsize}
% set colors for specific elements
\setbeamercolor{block}{fg=xethrublack}
\setbeamercolor{block title}{fg=xethrublack} % adjust title color to poppy
\setbeamercolor{block item}{fg=xethrublack}
\setbeamercolor{itemize item}{fg=xethrublack} % adjusts the bullet color
% frame title styling
\setbeamertemplate{frametitle}{\vspace{1.5em} \color{xethrublack} \insertframetitle}
\setbeamerfont{frametitle}{size=\LARGE,series=\bfseries}
% frame content styling
\setbeamersize{text margin left=1.5em,text margin right=3em}
%define first bullet symbol
\usesubitemizeitemtemplate{%
\tiny\raise1.5pt\hbox{\color{xethrusecondary}$\circ$}%
}
%define second bullet symbol
\usesubsubitemizeitemtemplate{%
\tiny\raise1.5pt\hbox{\color{xethrusecondary}$\blacktriangleright$}%
}
\ifbeamer@secheader\else\setbeamertemplate{headline}[default]\fi
\mode
<all>

View File

@ -42,8 +42,6 @@
%% List of personally preferred symbol definitions
%% Taken and edited from various online code snippets
\usepackage{upgreek}
\newcommand{\ipc}{{\sf ipc}}
\newcommand{\Prob}{\bbbp}
\newcommand{\Real}{\bbbr}
@ -68,32 +66,32 @@
\newcommand{\UUprime}{{\bf U'}}
\newcommand{\zzero}{{\bf 0}}
\newcommand{\ppi}{\mbox{\boldmath $\pi$}}
\newcommand{\rpi}{$\uppi$}
\newcommand{\rpi}{$\pi$}
\newcommand{\dDelta}{\mbox{\boldmath $\Delta$}}
\newcommand{\rDelta}{$\Updelta$}
\newcommand{\rSigma}{$\Upsigma$}
\newcommand{\rSD}{$\Upsigma\Updelta$}
\newcommand{\rDS}{$\Updelta\Upsigma$}
\newcommand{\rDelta}{$\Delta$}
\newcommand{\rSigma}{$\Sigma$}
\newcommand{\rSD}{$\Sigma\Delta$}
\newcommand{\rDS}{$\Delta\Sigma$}
\newcommand{\aalph}{\mbox{\boldmath $\alpha$}}
\newcommand{\ralpha}{$\upalpha$}
\newcommand{\ralpha}{$\alpha$}
\newcommand{\pphi}{\mbox{\boldmath $\phi$}}
\newcommand{\rphi}{$\upphi$}
\newcommand{\rphi}{$\phi$}
\newcommand{\bb}{{\bf b}}
\newcommand{\ee}{{\bf e}}
\newcommand{\mmu}{\mbox{\boldmath $\mu$}}
\newcommand{\rmu}{$\upmu$}
\newcommand{\rmu}{$\mu$}
\newcommand{\mbeta}{\mbox{\boldmath $\beta$}}
\newcommand{\rbeta}{$\upbeta$}
\newcommand{\rbeta}{$\beta$}
\newcommand{\meta}{\mbox{\boldmath $\eta$}}
\newcommand{\reta}{$\upeta$}
\newcommand{\rsigma}{$\upsigma$}
\newcommand{\rtau}{$\uptau$}
\newcommand{\reta}{$\eta$}
\newcommand{\rsigma}{$\sigma$}
\newcommand{\rtau}{$\tau$}
\newcommand{\vv}{{\bf v}}
\newcommand{\xx}{{\bf x}}
\newcommand{\yy}{{\bf y}}
\newcommand{\zz}{{\bf z}}
\newcommand{\oomeg}{\mbox{\boldmath $\omega$ }}
\newcommand{\rOmeg}{$\Upomega$}
\newcommand{\rOmeg}{$\Omega$}
\newcommand{\res}{{\bf res}}
\newcommand{\cchi}{{\mbox{\raisebox{.4ex}{$\chi$}}}}
%\newcommand{\cchi}{{\cal X}}

View File

@ -1,107 +1,107 @@
% Original Poster Template by Lieuwe B. Leene
% Last edited by: Lieuwe B. Leene 2017 August
% Modified by Lieuwe Leene, June 2019
\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{ngniharm1}{RGB}{48,33,79}
\definecolor{ngnibg}{RGB}{245,245,255}
\definecolor{ngniharm2}{RGB}{33,79,64}
% set lengths: what about geometry margins?
\newlength{\marginlength}%
\setlength{\marginlength}{2cm}
\setlength{\unitlength}{\paperwidth}%
\RequirePackage{graphicx}
\RequirePackage[margin=\marginlength,bottom=0mm]{geometry}
\RequirePackage{mdframed}
\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}
\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\:$}
\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}%
%\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}%
%}
\vspace{2cm}
\noindent\hspace{-1\marginlength}%
\includegraphics[width=\paperwidth, trim={0cm 17cm 0cm 0cm}]{Style/background_neuron.pdf}
\vspace{2cm}
\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}}
% 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}}}
% Original Poster Template by Lieuwe B. Leene
% Last edited by: Lieuwe B. Leene 2017 August
% Modified by Lieuwe Leene, June 2019
\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{ngniharm1}{RGB}{48,33,79}
\definecolor{ngnibg}{RGB}{245,245,255}
\definecolor{ngniharm2}{RGB}{33,79,64}
% set lengths: what about geometry margins?
\newlength{\marginlength}%
\setlength{\marginlength}{2cm}
\setlength{\unitlength}{\paperwidth}%
\RequirePackage{graphicx}
\RequirePackage[margin=\marginlength,bottom=0mm]{geometry}
\RequirePackage{mdframed}
\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}
\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\:$}
\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}%
%\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}%
%}
\vspace{2cm}
\noindent\hspace{-1\marginlength}%
\includegraphics[width=\paperwidth, trim={0cm 17cm 0cm 0cm}]{Style/background_neuron.pdf}
\vspace{2cm}
\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}}
% 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}}}

View File

@ -1,107 +1,107 @@
% Original Poster Template by Lieuwe B. Leene
% Last edited by: Lieuwe B. Leene 2017 August
% Modified by Lieuwe Leene, June 2019
\ProvidesClass{enginiposter}[2018/09/30 FORTE 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{ngniharm1}{RGB}{18,62,126}
\definecolor{ngnibg}{RGB}{245,245,255}
\definecolor{ngniharm2}{RGB}{00,192,221}
% set lengths: what about geometry margins?
\newlength{\marginlength}%
\setlength{\marginlength}{2cm}
\setlength{\unitlength}{\paperwidth}%
\RequirePackage{graphicx}
\RequirePackage[margin=\marginlength,bottom=0mm]{geometry}
\RequirePackage{mdframed}
\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}
\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\:$}
\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}%
%\colorbox{white}{%
\includegraphics[height=5cm]{Style/IC_blue.pdf}%
\hfill%
\includegraphics[height=5cm]{Style/forte_banner.pdf}%
\hfill%
\includegraphics[height=5cm]{Style/epsrc-bw.pdf}%
%}
\vspace{2cm}
\noindent\hspace{-1\marginlength}%
\includegraphics[width=\paperwidth, trim={0cm 6.5cm 0cm 0cm}]{Style/Silicon_Dioxide.jpg}
\vspace{2cm}
\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}}
% 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/forte_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}\hspace{\marginlength}}}
% Original Poster Template by Lieuwe B. Leene
% Last edited by: Lieuwe B. Leene 2017 August
% Modified by Lieuwe Leene, June 2019
\ProvidesClass{enginiposter}[2018/09/30 FORTE 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{ngniharm1}{RGB}{18,62,126}
\definecolor{ngnibg}{RGB}{245,245,255}
\definecolor{ngniharm2}{RGB}{00,192,221}
% set lengths: what about geometry margins?
\newlength{\marginlength}%
\setlength{\marginlength}{2cm}
\setlength{\unitlength}{\paperwidth}%
\RequirePackage{graphicx}
\RequirePackage[margin=\marginlength,bottom=0mm]{geometry}
\RequirePackage{mdframed}
\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}
\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\:$}
\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}%
%\colorbox{white}{%
\includegraphics[height=5cm]{Style/IC_blue.pdf}%
\hfill%
\includegraphics[height=5cm]{Style/forte_banner.pdf}%
\hfill%
\includegraphics[height=5cm]{Style/epsrc-bw.pdf}%
%}
\vspace{2cm}
\noindent\hspace{-1\marginlength}%
\includegraphics[width=\paperwidth, trim={0cm 6.5cm 0cm 0cm}]{Style/Silicon_Dioxide.jpg}
\vspace{2cm}
\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}}
% 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/forte_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}\hspace{\marginlength}}}

0
imperial-common.sty Executable file → Normal file
View File

0
impletter.cls Executable file → Normal file
View File

View File

@ -31,7 +31,7 @@
\providecommand{\fontscale}{1} % load default if not set
\setmainfont
[Path = ../Fonts/IBM-Plex-Sans/,
[Path = ../Latex/Fonts/IBM-Plex-Sans/,
Scale=\fontscale,
UprightFont = *-Regular,
ItalicFont = *-Italic,
@ -58,7 +58,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}{23}(75,13.5) % The position of the Last Updated text on the page
\begin{textblock}{23}(70,11.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
@ -105,7 +105,7 @@ 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}{23}(75,4)
\begin{textblock}{23}(70,4)
\vline
\flushleft{\color{headings}%
{\fontseries{l}\selectfont Address:} \Address \\
@ -151,7 +151,7 @@ Last Updated on \today } % Last Updated text
%----------------------------------------------------------------------------------------
\newenvironment{tightitemize} % Defines the tightitemize environment which modifies the itemize environment to be more compact
{\vspace{-\topsep} \begin{itemize} \itemsep1pt \parskip0pt \parsep0pt}
{\vspace{-\topsep} \begin{itemize} \itemsep4pt \parskip1pt \parsep1pt}
{\end{itemize} \vspace{-\topsep}}
%----------------------------------------------------------------------------------------

View File

@ -7,7 +7,7 @@
%
% Information about who sent the letter
\dept{\Organisation}
\address{\Address}
\address{\Address}
\telephone{\Telephone}
%\fax{+44 (0)20 7584 8120}
\email{\Email}
@ -15,7 +15,7 @@
\web{\Website}
\nametitle{\Salutation}
\author{\FirstName~\LastName}
\postnoms{\Creditation}
\postnoms{\Certification}
\jobtitle{\JobTitle}
%\signature{signature.png}
% % % % % % % % % % % % % % % % % % % % % % % % % % % %

View File

@ -1,17 +1,19 @@
%% Default Author details used by scripts
%% Several fields below can accommodate URL links
\makeatletter
\newcommand{\Salutation}{Mr.}
\newcommand{\FirstName}{John}
\newcommand{\LastName}{Dough}
\newcommand{\Certification}{MCA}
\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}
\newcommand{\Creditation}{MCA}
\newcommand{\Salutation}{Dr.}
\newcommand{\FirstName}{Lieuwe}
\newcommand{\LastName}{Leene}
\newcommand{\Certification}{PhD. MSc. BEng.}
\newcommand{\Email}{lieuwe.leene@novelda.com}
\newcommand{\JobTitle}{Mixed Signal IC Design Lead}
\newcommand{\Group}{Novelda Engineering Division}
\newcommand{\Organisation}{Novelda AS}
% \newcommand{\Address}{Eikelundveien 7, Kjeller, 2007 Norway}
% \newcommand{\Address}{12F Helgesens Gate, Oslo, 0553 Norway}
\newcommand{\Address}{Novelda AS Oslo, Gjerdrums vei 8, 0484 Oslo, Norway}
\newcommand{\Telephone}{(+47) 47 686 755}
\newcommand{\LinkedIn}{lieuwe-leene}
\newcommand{\Website}{lieuwe.leene.dev}
\newcommand{\MyKeyWords}{ASIC, UWB, RFIC, IEEE, FDSOI, ADC, DAC, DSP, ANALOG, MIXED SIGNAL, PLL, DLL, ADPLL, TDC, OSCILLATOR, CMOS, TSMC, GF, AMS, BANDGAP, TRANSCIEVER, RF, AUTOMOTIVE, DRC, LVS, QRC, SPECTRE, HFSS, SPICE, VERILOG, C++, CPP, PYTHON, PCB, CADENCE, MENTOR, CALIBRE, QUANTUS, PEGASUS, LAYOUT, SCHEMATIC, EMX, VERIFICATION, DESIGN}
\makeatother

21
requirements.txt Normal file
View File

@ -0,0 +1,21 @@
xelatex
latexmk
texlive-amsmath
texlive-beamer
texlive-booktabs
texlive-cite
texlive-fontspec
texlive-fp
texlive-geometry
texlive-ifxetex
texlive-lipsum
texlive-subfigure
texlive-xcolor
texlive-was
texlive-datetime
texlive-lastpage
texlive-lipsum
texlive-textpos
texlive-isodate
texlive-a0poster
texlive-mdframed