Report no cover
Author
Zengjie Xia
Last Updated
há 7 anos
License
LaTeX Project Public License 1.3c
Abstract
Report without cover page
Created by Zengjie Xia on 30/01/2018.
Copyright © 2018 Zengjie Xia. All rights reserved.
Report without cover page
Created by Zengjie Xia on 30/01/2018.
Copyright © 2018 Zengjie Xia. All rights reserved.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Report without cover page
% Created by Zengjie Xia on 30/01/2018.
% Copyright © 2018 Zengjie Xia. All rights reserved.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{report_no_cover}
\begin{document}
\titlespacing*{\section}{0pt}{3ex}{1.5ex} %optimizing section spacing
\titlespacing*{\subsection}{0pt}{2.7ex}{1.1ex} %optimizing subsection spacing
\titlespacing*{\subsubsection}{0pt}{2.7ex}{1.1ex} %optimizing subsubsection spacing
% define new command for fast image insertion.
\newcommand{\insertimage}[3][0.8\columnwidth]{
%size of the image relative to column-width set default to 0.8\columnwidth (which means if you write
%\insertimage{filename}{caption}
%it will come up image with default size.
% adjust the size with
%\insertimage{filename}{caption}[size you want]
\begin{minipage}{1\columnwidth}
\begin{center}
\includegraphics[width={#1}]{#2}
\captionof{figure}{{#3}}
\end{center}
\end{minipage}
}
% Do not modify anything unless you know what you are doing!
%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
% Title
\captionsetup{font=small}
\title{Name of your report}
\author{Your name}
\date{\today}
\maketitle
%Abstract
\begin{abstractX}
Welcome to use my template. Thanks for your trust.
%type your abstract here
\end{abstractX}
\begin{multicols}{2}
\section{Fast insertion of image}
\insertimage{lulu.jpg}{My cute lulu}
%size of the image relative to column-width set default to 0.8\columnwidth (which means if you write
%\insertimage{filename}{caption}
%it will come up image with default size.
% adjust the size with
%\insertimage{filename}{caption}[size you want]
Don't worry if you delete the manual for the fast image insertion. There is a copy of it in the 'DO NOT MODIFY' section.
\section{now you can start to write your paper}
\bibliographystyle{rsc}
\bibliography{reference}
\end{multicols}
\end{document}