Skip to content
Snippets Groups Projects
Commit 726a8038 authored by Edward Longman's avatar Edward Longman
Browse files

Add vol in title, bibentry to authorship + small edits

  + Volume implememnted with \volno and \volof definitions
  + bibentry is to print full citation in the authorship
  + Hyperlinks removed if they are likely to go out of date quickly
parent 2b0ca735
Branches
Tags
No related merge requests found
Showing
with 115 additions and 109 deletions
......@@ -588,6 +588,7 @@
\newcommand*{\qualifications}[1]{\def\quals{#1}}
\newcommand*{\addresses}[1]{\def\addressnames{#1}}
\newcommand*{\doi}[1]{\def\doicode{#1}}
\newcommand*{\volume}[2]{\def\volno{#1}\def\volof{#2}}
\newcommand*{\orcidid}[1]{\def\orcid{#1}}
\newcommand*{\university}[1]{\def\univname{#1}}
\newcommand*{\UNIVERSITY}[1]{\def\UNIVNAME{#1}}
......@@ -646,21 +647,16 @@
\authors {}
\qualifications{}
\orcidid{}
\university {\texorpdfstring{\href{http://www.soton.ac.uk}
\volume{}{}
\university {\texorpdfstring{\href{http://www.southampton.ac.uk}
{University of Southampton}}
{University of Southampton}}
\UNIVERSITY {\MakeUppercase{\univname}}
\department {\texorpdfstring{\href{http://www.ecs.soton.ac.uk}
{School of Electronics and Computer Science}}
{School of Electronics and Computer Science}}
\department {School of Electronics and Computer Science}
\DEPARTMENT {\MakeUppercase{\deptname}}
\group {\texorpdfstring{\href{http://cps.ecs.soton.ac.uk}
{Cyber Physical Systems Group}}
{Cyber Physical Systems Group}}
\group {Cyber Physical Systems Group}
\GROUP {\MakeUppercase{\groupname}}
\faculty {\texorpdfstring{\href{http://www.feps.soton.ac.uk}
{Faculty of Engineering and Physical Science}}
{Faculty of Engineering and Physical Science}}
\faculty {Faculty of Engineering and Physical Science}
\FACULTY {\MakeUppercase{\facname}}
\addresses {}
\subject {}
......@@ -768,7 +764,10 @@
}
\ifthenelse{\equal{\doicode}{}}
{}
{\smallskip DOI: \doicode}
{\smallskip DOI: \href{http://orcid.org/\doicode}{\doicode}\par}
\ifthenelse{\equal{\volno}{}}
{}
{\smallskip Volume \volno{} of \volof}
\vfill
{\LARGE \textit{by} \par}
\smallskip
......@@ -1180,7 +1179,7 @@
%
% \begin{macrocode}
%<*thesis|minithesis|progress|report|article>
\newcommand\listsymbolname{Nomenclature}
\newcommand\listsymbolname{Definitions and Abbreviations}
%</thesis|minithesis|progress|report|article>
%<*project|gdp>
\newcommand\listsymbolname{List of Symbols}
......@@ -1460,15 +1459,24 @@ Data: Author (Year) Title. URI [dataset]}
%<*testthesis|testminithesis|testprogress|testproject|testreport|testarticle|testgdp|testgdpsummary>
\graphicspath{{../Figures/}} % Location of your graphics files
\usepackage{natbib} % Use Natbib style for the refs.
%<*testthesis|testminithesis|testproject|testreport|testgdp>
\usepackage{bibentry} % Use bibentry for prepublished works
\nobibliography* % Use bibentry for prepublished works
%</testthesis|testminithesis|testproject|testreport|testgdp>
\hypersetup{colorlinks=true} % Set to false for black/white printing
\input{Definitions} % Include your abbreviations
%% ----------------------------------------------------------------
%% --------------------THESIS/DOC INFORMATION ---------------------
\title {An Investigation into \dots}
%<*testthesis>
\authors {Steve R. Gunn} % Use of Soton Email unadvised, use ORCiD instead.
%</testthesis>
%<*testminithesis|testprogress|testproject|testreport|testarticle|testgdp|testgdpsummary>
\authors {\texorpdfstring
{\href{mailto:S.R.Gunn@ecs.soton.ac.uk}{Steve R. Gunn}}
{Steve R. Gunn}
}
%</testminithesis|testprogress|testproject|testreport|testarticle|testgdp|testgdpsummary>
\addresses {\groupname\\\deptname\\\univname}
\date {\today}
%<*testminithesis|testprogress|testproject|testgdp|testgdpsummary>
......@@ -1486,6 +1494,7 @@ Data: Author (Year) Title. URI [dataset]}
%<*testthesis>
\orcidid{0000-0002-1825-0097}
\doi{10.1002/0470841559.ch1}
\volume{n}{m} %Optional Volume Numbering Volume n of m
%</testthesis>
\subject {}
\keywords {}
......@@ -1511,12 +1520,15 @@ This work is all about \dots
\addtotoc{List of Listings}
\lstlistoflistings
%</testthesis|testminithesis|testprogress|testproject|testreport|testgdp>
%%Lightweight Definitions and Abbreviations see package:nomencl for alternative
\listofsymbols{ll}{$w$ & The weight vector}
%</testthesis|testminithesis|testprogress|testproject|testreport|testarticle|testgdp>
%<*testthesis|testminithesis|testproject|testreport|testgdp>
%% ---------- AUTHORSHIP DECLARATION/ ACKNOW. / DEDICATORY ----------
%% Either include citations like below (as many as required spaced with commas or 'and').
\authorshipdeclaration{\citep{Gunn:2001:pdflatex}, \citep{Lovell:2011:updated} and \citep{Gunn:2011:updated2}}
%% \bibentry command must be used here with prepublished papers
% https://www.stefaanlippens.net/bibentry/
\authorshipdeclaration{\bibentry{Gunn:2001:pdflatex}, \bibentry{Lovell:2011:updated} and \bibentry{Gunn:2011:updated2}}
%% Or state no citations like below
%% \authorshipdeclaration{}
%% -----------------------
......
......@@ -27,6 +27,7 @@
\begin{abstract}
This work is all about \dots
\end{abstract}
%%Lightweight Definitions and Abbreviations see package:nomencl for alternative
\listofsymbols{ll}{$w$ & The weight vector}
\mainmatter
%% ------------------ MAIN MATTER (CONTENT) --------------------
......
......@@ -5,6 +5,8 @@
\documentclass[sotonlinks]{ecsgdp} % Use the GDP Report Style with custom link colour
\graphicspath{{../Figures/}} % Location of your graphics files
\usepackage{natbib} % Use Natbib style for the refs.
\usepackage{bibentry} % Use bibentry for prepublished works
\nobibliography* % Use bibentry for prepublished works
\hypersetup{colorlinks=true} % Set to false for black/white printing
\input{Definitions} % Include your abbreviations
%% ----------------------------------------------------------------
......@@ -36,10 +38,12 @@ This work is all about \dots
%% The List of listings does not, by default, appear in the ToC, so....
\addtotoc{List of Listings}
\lstlistoflistings
%%Lightweight Definitions and Abbreviations see package:nomencl for alternative
\listofsymbols{ll}{$w$ & The weight vector}
%% ---------- AUTHORSHIP DECLARATION/ ACKNOW. / DEDICATORY ----------
%% Either include citations like below (as many as required spaced with commas or 'and').
\authorshipdeclaration{\citep{Gunn:2001:pdflatex}, \citep{Lovell:2011:updated} and \citep{Gunn:2011:updated2}}
%% \bibentry command must be used here with prepublished papers
\authorshipdeclaration{\bibentry{Gunn:2001:pdflatex}, \bibentry{Lovell:2011:updated} and \bibentry{Gunn:2011:updated2}}
%% Or state no citations like below
%% \authorshipdeclaration{}
%% -----------------------
......
......@@ -5,6 +5,8 @@
\documentclass[sotonlinks]{ecsminithesis} % Use the minithesis Style with custom link colour
\graphicspath{{../Figures/}} % Location of your graphics files
\usepackage{natbib} % Use Natbib style for the refs.
\usepackage{bibentry} % Use bibentry for prepublished works
\nobibliography* % Use bibentry for prepublished works
\hypersetup{colorlinks=true} % Set to false for black/white printing
\input{Definitions} % Include your abbreviations
%% ----------------------------------------------------------------
......@@ -36,10 +38,12 @@ This work is all about \dots
%% The List of listings does not, by default, appear in the ToC, so....
\addtotoc{List of Listings}
\lstlistoflistings
%%Lightweight Definitions and Abbreviations see package:nomencl for alternative
\listofsymbols{ll}{$w$ & The weight vector}
%% ---------- AUTHORSHIP DECLARATION/ ACKNOW. / DEDICATORY ----------
%% Either include citations like below (as many as required spaced with commas or 'and').
\authorshipdeclaration{\citep{Gunn:2001:pdflatex}, \citep{Lovell:2011:updated} and \citep{Gunn:2011:updated2}}
%% \bibentry command must be used here with prepublished papers
\authorshipdeclaration{\bibentry{Gunn:2001:pdflatex}, \bibentry{Lovell:2011:updated} and \bibentry{Gunn:2011:updated2}}
%% Or state no citations like below
%% \authorshipdeclaration{}
%% -----------------------
......
......@@ -36,6 +36,7 @@ This work is all about \dots
%% The List of listings does not, by default, appear in the ToC, so....
\addtotoc{List of Listings}
\lstlistoflistings
%%Lightweight Definitions and Abbreviations see package:nomencl for alternative
\listofsymbols{ll}{$w$ & The weight vector}
\mainmatter
%% ------------------ MAIN MATTER (CONTENT) --------------------
......
......@@ -5,6 +5,8 @@
\documentclass[sotonlinks]{ecsproject} % Use the Project Style with custom link colour
\graphicspath{{../Figures/}} % Location of your graphics files
\usepackage{natbib} % Use Natbib style for the refs.
\usepackage{bibentry} % Use bibentry for prepublished works
\nobibliography* % Use bibentry for prepublished works
\hypersetup{colorlinks=true} % Set to false for black/white printing
\input{Definitions} % Include your abbreviations
%% ----------------------------------------------------------------
......@@ -36,10 +38,12 @@ This work is all about \dots
%% The List of listings does not, by default, appear in the ToC, so....
\addtotoc{List of Listings}
\lstlistoflistings
%%Lightweight Definitions and Abbreviations see package:nomencl for alternative
\listofsymbols{ll}{$w$ & The weight vector}
%% ---------- AUTHORSHIP DECLARATION/ ACKNOW. / DEDICATORY ----------
%% Either include citations like below (as many as required spaced with commas or 'and').
\authorshipdeclaration{\citep{Gunn:2001:pdflatex}, \citep{Lovell:2011:updated} and \citep{Gunn:2011:updated2}}
%% \bibentry command must be used here with prepublished papers
\authorshipdeclaration{\bibentry{Gunn:2001:pdflatex}, \bibentry{Lovell:2011:updated} and \bibentry{Gunn:2011:updated2}}
%% Or state no citations like below
%% \authorshipdeclaration{}
%% -----------------------
......
......@@ -5,6 +5,8 @@
\documentclass[sotonlinks]{ecsreport} % Use the Report Style with custom link colour
\graphicspath{{../Figures/}} % Location of your graphics files
\usepackage{natbib} % Use Natbib style for the refs.
\usepackage{bibentry} % Use bibentry for prepublished works
\nobibliography* % Use bibentry for prepublished works
\hypersetup{colorlinks=true} % Set to false for black/white printing
\input{Definitions} % Include your abbreviations
%% ----------------------------------------------------------------
......@@ -33,10 +35,12 @@ This work is all about \dots
%% The List of listings does not, by default, appear in the ToC, so....
\addtotoc{List of Listings}
\lstlistoflistings
%%Lightweight Definitions and Abbreviations see package:nomencl for alternative
\listofsymbols{ll}{$w$ & The weight vector}
%% ---------- AUTHORSHIP DECLARATION/ ACKNOW. / DEDICATORY ----------
%% Either include citations like below (as many as required spaced with commas or 'and').
\authorshipdeclaration{\citep{Gunn:2001:pdflatex}, \citep{Lovell:2011:updated} and \citep{Gunn:2011:updated2}}
%% \bibentry command must be used here with prepublished papers
\authorshipdeclaration{\bibentry{Gunn:2001:pdflatex}, \bibentry{Lovell:2011:updated} and \bibentry{Gunn:2011:updated2}}
%% Or state no citations like below
%% \authorshipdeclaration{}
%% -----------------------
......
......@@ -5,21 +5,21 @@
\documentclass[sotonlinks]{ecsthesis} % Use the Thesis Style with custom link colour
\graphicspath{{../Figures/}} % Location of your graphics files
\usepackage{natbib} % Use Natbib style for the refs.
\usepackage{bibentry} % Use bibentry for prepublished works
\nobibliography* % Use bibentry for prepublished works
\hypersetup{colorlinks=true} % Set to false for black/white printing
\input{Definitions} % Include your abbreviations
%% ----------------------------------------------------------------
%% --------------------THESIS/DOC INFORMATION ---------------------
\title {An Investigation into \dots}
\authors {\texorpdfstring
{\href{mailto:S.R.Gunn@ecs.soton.ac.uk}{Steve R. Gunn}}
{Steve R. Gunn}
}
\authors {Steve R. Gunn} % Use of Soton Email unadvised, use ORCiD instead.
\addresses {\groupname\\\deptname\\\univname}
\date {\today}
%% Optional Fields
\qualifications{MEng PhD}
\orcidid{0000-0002-1825-0097}
\doi{10.1002/0470841559.ch1}
\volume{n}{m} %Optional Volume Numbering Volume n of m
\subject {}
\keywords {}
......@@ -38,10 +38,12 @@ This work is all about \dots
%% The List of listings does not, by default, appear in the ToC, so....
\addtotoc{List of Listings}
\lstlistoflistings
%%Lightweight Definitions and Abbreviations see package:nomencl for alternative
\listofsymbols{ll}{$w$ & The weight vector}
%% ---------- AUTHORSHIP DECLARATION/ ACKNOW. / DEDICATORY ----------
%% Either include citations like below (as many as required spaced with commas or 'and').
\authorshipdeclaration{\citep{Gunn:2001:pdflatex}, \citep{Lovell:2011:updated} and \citep{Gunn:2011:updated2}}
%% \bibentry command must be used here with prepublished papers
\authorshipdeclaration{\bibentry{Gunn:2001:pdflatex}, \bibentry{Lovell:2011:updated} and \bibentry{Gunn:2011:updated2}}
%% Or state no citations like below
%% \authorshipdeclaration{}
%% -----------------------
......
......@@ -158,6 +158,7 @@
\newcommand*{\qualifications}[1]{\def\quals{#1}}
\newcommand*{\addresses}[1]{\def\addressnames{#1}}
\newcommand*{\doi}[1]{\def\doicode{#1}}
\newcommand*{\volume}[2]{\def\volno{#1}\def\volof{#2}}
\newcommand*{\orcidid}[1]{\def\orcid{#1}}
\newcommand*{\university}[1]{\def\univname{#1}}
\newcommand*{\UNIVERSITY}[1]{\def\UNIVNAME{#1}}
......@@ -177,21 +178,16 @@
\authors {}
\qualifications{}
\orcidid{}
\university {\texorpdfstring{\href{http://www.soton.ac.uk}
\volume{}{}
\university {\texorpdfstring{\href{http://www.southampton.ac.uk}
{University of Southampton}}
{University of Southampton}}
\UNIVERSITY {\MakeUppercase{\univname}}
\department {\texorpdfstring{\href{http://www.ecs.soton.ac.uk}
{School of Electronics and Computer Science}}
{School of Electronics and Computer Science}}
\department {School of Electronics and Computer Science}
\DEPARTMENT {\MakeUppercase{\deptname}}
\group {\texorpdfstring{\href{http://cps.ecs.soton.ac.uk}
{Cyber Physical Systems Group}}
{Cyber Physical Systems Group}}
\group {Cyber Physical Systems Group}
\GROUP {\MakeUppercase{\groupname}}
\faculty {\texorpdfstring{\href{http://www.feps.soton.ac.uk}
{Faculty of Engineering and Physical Science}}
{Faculty of Engineering and Physical Science}}
\faculty {Faculty of Engineering and Physical Science}
\FACULTY {\MakeUppercase{\facname}}
\addresses {}
\subject {}
......@@ -417,7 +413,7 @@
\if@restonecol\twocolumn\fi
}\end{spacing}
}
\newcommand\listsymbolname{Nomenclature}
\newcommand\listsymbolname{Definitions and Abbreviations}
\usepackage{longtable}
\newcommand\listofsymbols[2]{
\btypeout{\listsymbolname}
......
......@@ -158,6 +158,7 @@
\newcommand*{\qualifications}[1]{\def\quals{#1}}
\newcommand*{\addresses}[1]{\def\addressnames{#1}}
\newcommand*{\doi}[1]{\def\doicode{#1}}
\newcommand*{\volume}[2]{\def\volno{#1}\def\volof{#2}}
\newcommand*{\orcidid}[1]{\def\orcid{#1}}
\newcommand*{\university}[1]{\def\univname{#1}}
\newcommand*{\UNIVERSITY}[1]{\def\UNIVNAME{#1}}
......@@ -177,21 +178,16 @@
\authors {}
\qualifications{}
\orcidid{}
\university {\texorpdfstring{\href{http://www.soton.ac.uk}
\volume{}{}
\university {\texorpdfstring{\href{http://www.southampton.ac.uk}
{University of Southampton}}
{University of Southampton}}
\UNIVERSITY {\MakeUppercase{\univname}}
\department {\texorpdfstring{\href{http://www.ecs.soton.ac.uk}
{School of Electronics and Computer Science}}
{School of Electronics and Computer Science}}
\department {School of Electronics and Computer Science}
\DEPARTMENT {\MakeUppercase{\deptname}}
\group {\texorpdfstring{\href{http://cps.ecs.soton.ac.uk}
{Cyber Physical Systems Group}}
{Cyber Physical Systems Group}}
\group {Cyber Physical Systems Group}
\GROUP {\MakeUppercase{\groupname}}
\faculty {\texorpdfstring{\href{http://www.feps.soton.ac.uk}
{Faculty of Engineering and Physical Science}}
{Faculty of Engineering and Physical Science}}
\faculty {Faculty of Engineering and Physical Science}
\FACULTY {\MakeUppercase{\facname}}
\addresses {}
\subject {}
......
......@@ -156,6 +156,7 @@
\newcommand*{\qualifications}[1]{\def\quals{#1}}
\newcommand*{\addresses}[1]{\def\addressnames{#1}}
\newcommand*{\doi}[1]{\def\doicode{#1}}
\newcommand*{\volume}[2]{\def\volno{#1}\def\volof{#2}}
\newcommand*{\orcidid}[1]{\def\orcid{#1}}
\newcommand*{\university}[1]{\def\univname{#1}}
\newcommand*{\UNIVERSITY}[1]{\def\UNIVNAME{#1}}
......@@ -175,21 +176,16 @@
\authors {}
\qualifications{}
\orcidid{}
\university {\texorpdfstring{\href{http://www.soton.ac.uk}
\volume{}{}
\university {\texorpdfstring{\href{http://www.southampton.ac.uk}
{University of Southampton}}
{University of Southampton}}
\UNIVERSITY {\MakeUppercase{\univname}}
\department {\texorpdfstring{\href{http://www.ecs.soton.ac.uk}
{School of Electronics and Computer Science}}
{School of Electronics and Computer Science}}
\department {School of Electronics and Computer Science}
\DEPARTMENT {\MakeUppercase{\deptname}}
\group {\texorpdfstring{\href{http://cps.ecs.soton.ac.uk}
{Cyber Physical Systems Group}}
{Cyber Physical Systems Group}}
\group {Cyber Physical Systems Group}
\GROUP {\MakeUppercase{\groupname}}
\faculty {\texorpdfstring{\href{http://www.feps.soton.ac.uk}
{Faculty of Engineering and Physical Science}}
{Faculty of Engineering and Physical Science}}
\faculty {Faculty of Engineering and Physical Science}
\FACULTY {\MakeUppercase{\facname}}
\addresses {}
\subject {}
......
......@@ -158,6 +158,7 @@
\newcommand*{\qualifications}[1]{\def\quals{#1}}
\newcommand*{\addresses}[1]{\def\addressnames{#1}}
\newcommand*{\doi}[1]{\def\doicode{#1}}
\newcommand*{\volume}[2]{\def\volno{#1}\def\volof{#2}}
\newcommand*{\orcidid}[1]{\def\orcid{#1}}
\newcommand*{\university}[1]{\def\univname{#1}}
\newcommand*{\UNIVERSITY}[1]{\def\UNIVNAME{#1}}
......@@ -177,21 +178,16 @@
\authors {}
\qualifications{}
\orcidid{}
\university {\texorpdfstring{\href{http://www.soton.ac.uk}
\volume{}{}
\university {\texorpdfstring{\href{http://www.southampton.ac.uk}
{University of Southampton}}
{University of Southampton}}
\UNIVERSITY {\MakeUppercase{\univname}}
\department {\texorpdfstring{\href{http://www.ecs.soton.ac.uk}
{School of Electronics and Computer Science}}
{School of Electronics and Computer Science}}
\department {School of Electronics and Computer Science}
\DEPARTMENT {\MakeUppercase{\deptname}}
\group {\texorpdfstring{\href{http://cps.ecs.soton.ac.uk}
{Cyber Physical Systems Group}}
{Cyber Physical Systems Group}}
\group {Cyber Physical Systems Group}
\GROUP {\MakeUppercase{\groupname}}
\faculty {\texorpdfstring{\href{http://www.feps.soton.ac.uk}
{Faculty of Engineering and Physical Science}}
{Faculty of Engineering and Physical Science}}
\faculty {Faculty of Engineering and Physical Science}
\FACULTY {\MakeUppercase{\facname}}
\addresses {}
\subject {}
......@@ -339,7 +335,7 @@
\cleardoublepage
}\end{spacing}
}
\newcommand\listsymbolname{Nomenclature}
\newcommand\listsymbolname{Definitions and Abbreviations}
\usepackage{longtable}
\newcommand\listofsymbols[2]{
\btypeout{\listsymbolname}
......
......@@ -158,6 +158,7 @@
\newcommand*{\qualifications}[1]{\def\quals{#1}}
\newcommand*{\addresses}[1]{\def\addressnames{#1}}
\newcommand*{\doi}[1]{\def\doicode{#1}}
\newcommand*{\volume}[2]{\def\volno{#1}\def\volof{#2}}
\newcommand*{\orcidid}[1]{\def\orcid{#1}}
\newcommand*{\university}[1]{\def\univname{#1}}
\newcommand*{\UNIVERSITY}[1]{\def\UNIVNAME{#1}}
......@@ -177,21 +178,16 @@
\authors {}
\qualifications{}
\orcidid{}
\university {\texorpdfstring{\href{http://www.soton.ac.uk}
\volume{}{}
\university {\texorpdfstring{\href{http://www.southampton.ac.uk}
{University of Southampton}}
{University of Southampton}}
\UNIVERSITY {\MakeUppercase{\univname}}
\department {\texorpdfstring{\href{http://www.ecs.soton.ac.uk}
{School of Electronics and Computer Science}}
{School of Electronics and Computer Science}}
\department {School of Electronics and Computer Science}
\DEPARTMENT {\MakeUppercase{\deptname}}
\group {\texorpdfstring{\href{http://cps.ecs.soton.ac.uk}
{Cyber Physical Systems Group}}
{Cyber Physical Systems Group}}
\group {Cyber Physical Systems Group}
\GROUP {\MakeUppercase{\groupname}}
\faculty {\texorpdfstring{\href{http://www.feps.soton.ac.uk}
{Faculty of Engineering and Physical Science}}
{Faculty of Engineering and Physical Science}}
\faculty {Faculty of Engineering and Physical Science}
\FACULTY {\MakeUppercase{\facname}}
\addresses {}
\subject {}
......@@ -339,7 +335,7 @@
\cleardoublepage
}\end{spacing}
}
\newcommand\listsymbolname{Nomenclature}
\newcommand\listsymbolname{Definitions and Abbreviations}
\usepackage{longtable}
\newcommand\listofsymbols[2]{
\btypeout{\listsymbolname}
......
......@@ -158,6 +158,7 @@
\newcommand*{\qualifications}[1]{\def\quals{#1}}
\newcommand*{\addresses}[1]{\def\addressnames{#1}}
\newcommand*{\doi}[1]{\def\doicode{#1}}
\newcommand*{\volume}[2]{\def\volno{#1}\def\volof{#2}}
\newcommand*{\orcidid}[1]{\def\orcid{#1}}
\newcommand*{\university}[1]{\def\univname{#1}}
\newcommand*{\UNIVERSITY}[1]{\def\UNIVNAME{#1}}
......@@ -177,21 +178,16 @@
\authors {}
\qualifications{}
\orcidid{}
\university {\texorpdfstring{\href{http://www.soton.ac.uk}
\volume{}{}
\university {\texorpdfstring{\href{http://www.southampton.ac.uk}
{University of Southampton}}
{University of Southampton}}
\UNIVERSITY {\MakeUppercase{\univname}}
\department {\texorpdfstring{\href{http://www.ecs.soton.ac.uk}
{School of Electronics and Computer Science}}
{School of Electronics and Computer Science}}
\department {School of Electronics and Computer Science}
\DEPARTMENT {\MakeUppercase{\deptname}}
\group {\texorpdfstring{\href{http://cps.ecs.soton.ac.uk}
{Cyber Physical Systems Group}}
{Cyber Physical Systems Group}}
\group {Cyber Physical Systems Group}
\GROUP {\MakeUppercase{\groupname}}
\faculty {\texorpdfstring{\href{http://www.feps.soton.ac.uk}
{Faculty of Engineering and Physical Science}}
{Faculty of Engineering and Physical Science}}
\faculty {Faculty of Engineering and Physical Science}
\FACULTY {\MakeUppercase{\facname}}
\addresses {}
\subject {}
......
......@@ -158,6 +158,7 @@
\newcommand*{\qualifications}[1]{\def\quals{#1}}
\newcommand*{\addresses}[1]{\def\addressnames{#1}}
\newcommand*{\doi}[1]{\def\doicode{#1}}
\newcommand*{\volume}[2]{\def\volno{#1}\def\volof{#2}}
\newcommand*{\orcidid}[1]{\def\orcid{#1}}
\newcommand*{\university}[1]{\def\univname{#1}}
\newcommand*{\UNIVERSITY}[1]{\def\UNIVNAME{#1}}
......@@ -177,21 +178,16 @@
\authors {}
\qualifications{}
\orcidid{}
\university {\texorpdfstring{\href{http://www.soton.ac.uk}
\volume{}{}
\university {\texorpdfstring{\href{http://www.southampton.ac.uk}
{University of Southampton}}
{University of Southampton}}
\UNIVERSITY {\MakeUppercase{\univname}}
\department {\texorpdfstring{\href{http://www.ecs.soton.ac.uk}
{School of Electronics and Computer Science}}
{School of Electronics and Computer Science}}
\department {School of Electronics and Computer Science}
\DEPARTMENT {\MakeUppercase{\deptname}}
\group {\texorpdfstring{\href{http://cps.ecs.soton.ac.uk}
{Cyber Physical Systems Group}}
{Cyber Physical Systems Group}}
\group {Cyber Physical Systems Group}
\GROUP {\MakeUppercase{\groupname}}
\faculty {\texorpdfstring{\href{http://www.feps.soton.ac.uk}
{Faculty of Engineering and Physical Science}}
{Faculty of Engineering and Physical Science}}
\faculty {Faculty of Engineering and Physical Science}
\FACULTY {\MakeUppercase{\facname}}
\addresses {}
\subject {}
......@@ -222,7 +218,10 @@
}
\ifthenelse{\equal{\doicode}{}}
{}
{\smallskip DOI: \doicode}
{\smallskip DOI: \href{http://orcid.org/\doicode}{\doicode}\par}
\ifthenelse{\equal{\volno}{}}
{}
{\smallskip Volume \volno{} of \volof}
\vfill
{\LARGE \textit{by} \par}
\smallskip
......@@ -347,7 +346,7 @@
\cleardoublepage
}\end{spacing}
}
\newcommand\listsymbolname{Nomenclature}
\newcommand\listsymbolname{Definitions and Abbreviations}
\usepackage{longtable}
\newcommand\listofsymbols[2]{
\btypeout{\listsymbolname}
......
......@@ -162,6 +162,7 @@
\newcommand*{\qualifications}[1]{\def\quals{#1}}
\newcommand*{\addresses}[1]{\def\addressnames{#1}}
\newcommand*{\doi}[1]{\def\doicode{#1}}
\newcommand*{\volume}[2]{\def\volno{#1}\def\volof{#2}}
\newcommand*{\orcidid}[1]{\def\orcid{#1}}
\newcommand*{\university}[1]{\def\univname{#1}}
\newcommand*{\UNIVERSITY}[1]{\def\UNIVNAME{#1}}
......@@ -181,21 +182,16 @@
\authors {}
\qualifications{}
\orcidid{}
\university {\texorpdfstring{\href{http://www.soton.ac.uk}
\volume{}{}
\university {\texorpdfstring{\href{http://www.southampton.ac.uk}
{University of Southampton}}
{University of Southampton}}
\UNIVERSITY {\MakeUppercase{\univname}}
\department {\texorpdfstring{\href{http://www.ecs.soton.ac.uk}
{School of Electronics and Computer Science}}
{School of Electronics and Computer Science}}
\department {School of Electronics and Computer Science}
\DEPARTMENT {\MakeUppercase{\deptname}}
\group {\texorpdfstring{\href{http://cps.ecs.soton.ac.uk}
{Cyber Physical Systems Group}}
{Cyber Physical Systems Group}}
\group {Cyber Physical Systems Group}
\GROUP {\MakeUppercase{\groupname}}
\faculty {\texorpdfstring{\href{http://www.feps.soton.ac.uk}
{Faculty of Engineering and Physical Science}}
{Faculty of Engineering and Physical Science}}
\faculty {Faculty of Engineering and Physical Science}
\FACULTY {\MakeUppercase{\facname}}
\addresses {}
\subject {}
......@@ -229,7 +225,10 @@
}
\ifthenelse{\equal{\doicode}{}}
{}
{\smallskip DOI: \doicode}
{\smallskip DOI: \href{http://orcid.org/\doicode}{\doicode}\par}
\ifthenelse{\equal{\volno}{}}
{}
{\smallskip Volume \volno{} of \volof}
\vfill
{\LARGE \textit{by} \par}
\smallskip
......@@ -353,7 +352,7 @@
\cleardoublepage
}\end{spacing}
}
\newcommand\listsymbolname{Nomenclature}
\newcommand\listsymbolname{Definitions and Abbreviations}
\usepackage{longtable}
\newcommand\listofsymbols[2]{
\btypeout{\listsymbolname}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment