This commit is contained in:
parent
7323be8dbc
commit
d83e015d46
24
.drone.yml
24
.drone.yml
@ -38,15 +38,15 @@ steps:
|
||||
- pdflatex --shell-escape report.tex
|
||||
- cd -
|
||||
|
||||
- name: Build worktable
|
||||
- name: Build Meeting
|
||||
commands:
|
||||
- cd worktable
|
||||
- pdflatex --shell-escape worktable.tex
|
||||
- cd meeting
|
||||
- pdflatex --shell-escape meeting.tex
|
||||
# Prepare bib
|
||||
- /usr/bin/vendor_perl/biber worktable
|
||||
- /usr/bin/vendor_perl/biber meeting
|
||||
# Compile twice for the table of contents and for bib text
|
||||
- pdflatex --shell-escape worktable.tex
|
||||
- pdflatex --shell-escape worktable.tex
|
||||
- pdflatex --shell-escape meeting.tex
|
||||
- pdflatex --shell-escape meeting.tex
|
||||
- cd -
|
||||
#
|
||||
# - name: Generate text
|
||||
@ -62,7 +62,17 @@ steps:
|
||||
- tea login add --url https://git.andr3h3nriqu3s.com --token "$TOKEN"
|
||||
- tea r rm -y current || echo "Release not found"
|
||||
# - tea r c --title "Latest Report" --asset report/report.pdf --asset upds-1/UPDS12-1.pdf --asset upds-2/UPDS12-2.pdf --asset results.txt --asset poster/poster.pdf current
|
||||
- tea r c --title "Latest Report" --asset projectsynopsis/project-synopsis.pdf --asset report/report.pdf --asset worktable/worktable.pdf current
|
||||
- tea r c --title "Latest Report" --asset projectsynopsis/project-synopsis.pdf --asset report/report.pdf current
|
||||
|
||||
- name: gitea_release meeting
|
||||
environment:
|
||||
TOKEN:
|
||||
from_secret: token
|
||||
commands:
|
||||
- tea login add --url https://git.andr3h3nriqu3s.com --token "$TOKEN"
|
||||
- tea r rm -y meeting1 || echo "Release not found"
|
||||
# - tea r c --title "Latest Report" --asset report/report.pdf --asset upds-1/UPDS12-1.pdf --asset upds-2/UPDS12-2.pdf --asset results.txt --asset poster/poster.pdf current
|
||||
- tea r c --title "Meeting" --asset meeting/meeting.pdf meeting1
|
||||
|
||||
- name: Remove current on failure
|
||||
environment:
|
||||
|
88
meeting/meeting.tex
Normal file
88
meeting/meeting.tex
Normal file
@ -0,0 +1,88 @@
|
||||
%%% Preamble
|
||||
\documentclass[11pt, a4paper]{article}
|
||||
|
||||
\usepackage[english]{babel} % English language/hyphenation
|
||||
\usepackage{url}
|
||||
\usepackage{tabularx}
|
||||
\usepackage{pdfpages}
|
||||
\usepackage{float}
|
||||
|
||||
\usepackage{graphicx}
|
||||
\graphicspath{ {../images for report/} }
|
||||
\usepackage[margin=2cm]{geometry}
|
||||
|
||||
\usepackage{hyperref}
|
||||
\hypersetup{
|
||||
colorlinks,
|
||||
citecolor=black,
|
||||
filecolor=black,
|
||||
linkcolor=black,
|
||||
urlcolor=black
|
||||
}
|
||||
|
||||
\usepackage{cleveref}
|
||||
|
||||
%%% Custom headers/footers (fancyhdr package)
|
||||
\usepackage{fancyhdr}
|
||||
\pagestyle{fancyplain}
|
||||
\fancyhead{} % No page header
|
||||
\fancyfoot[L]{} % Empty
|
||||
\fancyfoot[C]{\thepage} % Pagenumbering
|
||||
\fancyfoot[R]{} % Empty
|
||||
\renewcommand{\headrulewidth}{0pt} % Remove header underlines
|
||||
\renewcommand{\footrulewidth}{0pt} % Remove footer underlines
|
||||
\setlength{\headheight}{13.6pt}
|
||||
|
||||
% numeric
|
||||
\usepackage[style=ieee,sorting=none,backend=biber]{biblatex}
|
||||
\addbibresource{../main.bib}
|
||||
|
||||
% Write the approved title of your dissertation
|
||||
\title{Automated image classification with expandable models}
|
||||
|
||||
% Write your full name, as in University records
|
||||
\author{Andre Henriques, 6644818}
|
||||
|
||||
\date{}
|
||||
|
||||
%%% Begin document
|
||||
\begin{document}
|
||||
\subsection{Minute Mittings}
|
||||
\begin{itemize}
|
||||
\item Discussed progress so far.
|
||||
\item Discussed code work vs documentation work.
|
||||
\item Discussed formating of the document.
|
||||
\item Discussed next steps.
|
||||
\end{itemize}
|
||||
\subsection{Workplan}
|
||||
\begin{tabular}{ |m{0.5\textwidth}|m{0.5\textwidth}| }
|
||||
\hline
|
||||
Month & Goals \\
|
||||
\hline
|
||||
Feburary & \begin{itemize}
|
||||
\item Add api support.
|
||||
\item Start working on expandable models generation
|
||||
\item Start documenting the design process
|
||||
\item Improve Literature review
|
||||
\item Start documenting results
|
||||
\end{itemize} \\
|
||||
\hline
|
||||
March & \begin{itemize}
|
||||
\item Create systems to expand the expandable models and contract models
|
||||
\item Continue documenting the design process
|
||||
\item Review draft submissions
|
||||
\end{itemize} \\
|
||||
\hline
|
||||
April & \begin{itemize}
|
||||
\item Basic final report finish
|
||||
\item Create systems to expand and reduce expandable models
|
||||
\end{itemize} \\
|
||||
\hline
|
||||
May & \begin{itemize}
|
||||
\item Finish and submit final report
|
||||
\end{itemize} \\
|
||||
\hline
|
||||
\end{tabular}
|
||||
\end{document}
|
||||
|
||||
|
@ -1,80 +0,0 @@
|
||||
%%% Preamble
|
||||
\documentclass[11pt, a4paper]{article}
|
||||
|
||||
\usepackage[english]{babel} % English language/hyphenation
|
||||
\usepackage{url}
|
||||
\usepackage{tabularx}
|
||||
\usepackage{pdfpages}
|
||||
\usepackage{float}
|
||||
|
||||
\usepackage{graphicx}
|
||||
\graphicspath{ {../images for report/} }
|
||||
\usepackage[margin=2cm]{geometry}
|
||||
|
||||
\usepackage{hyperref}
|
||||
\hypersetup{
|
||||
colorlinks,
|
||||
citecolor=black,
|
||||
filecolor=black,
|
||||
linkcolor=black,
|
||||
urlcolor=black
|
||||
}
|
||||
|
||||
\usepackage{cleveref}
|
||||
|
||||
%%% Custom headers/footers (fancyhdr package)
|
||||
\usepackage{fancyhdr}
|
||||
\pagestyle{fancyplain}
|
||||
\fancyhead{} % No page header
|
||||
\fancyfoot[L]{} % Empty
|
||||
\fancyfoot[C]{\thepage} % Pagenumbering
|
||||
\fancyfoot[R]{} % Empty
|
||||
\renewcommand{\headrulewidth}{0pt} % Remove header underlines
|
||||
\renewcommand{\footrulewidth}{0pt} % Remove footer underlines
|
||||
\setlength{\headheight}{13.6pt}
|
||||
|
||||
% numeric
|
||||
\usepackage[style=ieee,sorting=none,backend=biber]{biblatex}
|
||||
\addbibresource{../main.bib}
|
||||
|
||||
% Write the approved title of your dissertation
|
||||
\title{Automated image classification with expandable models}
|
||||
|
||||
% Write your full name, as in University records
|
||||
\author{Andre Henriques, 6644818}
|
||||
|
||||
\date{}
|
||||
|
||||
%%% Begin document
|
||||
\begin{document}
|
||||
\begin{tabular}{ |m{0.5\textwidth}|m{0.5\textwidth}| }
|
||||
\hline
|
||||
Month & Goals \\
|
||||
\hline
|
||||
Feburary & \begin{itemize}
|
||||
\item Add api support.
|
||||
\item Start working on expandable models generation
|
||||
\item Start documenting the design process
|
||||
\item Improve Literature review
|
||||
\item Start documenting results
|
||||
\end{itemize} \\
|
||||
\hline
|
||||
March & \begin{itemize}
|
||||
\item Create systems to expand the expandable models and contract models
|
||||
\item Continue documenting the design process
|
||||
\item Review draft submissions
|
||||
\end{itemize} \\
|
||||
\hline
|
||||
April & \begin{itemize}
|
||||
\item Basic final report finish
|
||||
\item Create systems to expand and reduce expandable models
|
||||
\end{itemize} \\
|
||||
\hline
|
||||
May & \begin{itemize}
|
||||
\item Finish and submit final report
|
||||
\end{itemize} \\
|
||||
\hline
|
||||
\end{tabular}
|
||||
\end{document}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user