I wouldn't trust your supervisor on that and politely ask the journal for the requirements. There are some requirements given, i didn't read it all, but you should prior to asking.
You can do a part of the stuff done by the magazine and mimick
the layout using a note-column. But putting stuff (like a
tablebox) in two out of three columns, is impossible to be done
with (standard) LaTeX. Stuff like that needs manual labour. You
could have a look at LuaTeX tough, i don't think all of that is
possible, but a part seems doable. Will need some computing time
tough.
Code: Select all
\documentclass[twoside]{scrartcl}
\usepackage{geometry}
\geometry{inner=2cm,top=2cm,bottom=2cm,outer=4cm,marginparwidth=3cm}
\usepackage{scrlayer-scrpage}
\setheadwidth{textwithmarginpar}
\ohead{Research}
\ihead{\color{green!20!white}\rule{1.1\textwidth}{.5\headheight}}
\addtokomafont{pagehead}{\sffamily\upshape}
\setkomafont{disposition}{\sffamily\normalsize}
\addtokomafont{section}{\color{blue!40!white}\large}
\usepackage{xcolor}
\usepackage{tgtermes}
\usepackage{multicol}
\usepackage{blindtext}
\begin{document}
\begin{center}\LARGE\sffamily Outcomes of Australian Overseas somthing stuff
\end{center}
\marginpar{\small\textbf{Some Author}\newline some fancy degree \par
\textbf{Another Author}\newline some fancy degree}
\begin{multicols}{3}
\blinddocument
\blinddocument
\blinddocument
\end{multicols}
\end{document}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.