Skip to content

furkan/sp-latex-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

sp-latex-template

This is a LaTeX template for METU EEE Summer Practice reports.

I advise using Overleaf instead of running locally.

After copying the project on Overleaf, just change what's inside the document folder. You do not need to engage with the main.tex file or the config folder.

Enjoy... (Despise less)

Short Tutorial

Adding Chapters

Adding Sections

Adding Figures

Referencing Figures

Citations

Adding Chapters

  • To add a new chapter called My Experience, in the documents/content folder, create a new file called myexperience.tex (or whatever) and make its first line \chapter{MY EXPERIENCE}.

  • In the file documents/content.tex, add a line that calls this chapter: \input{document/content/myexperience.tex}. (Note that the order of the lines in this file is important, as that is the same order with which they will show up on the document.)

Adding Sections

Adding Figures

\begin{figure}[tb]
\centering
\includegraphics[width = 0.4\hsize]{document/figures/odtu_logo.png}
\caption{Caption will be here.}
\label{fig:logo}
\end{figure}
  • Label is important if you plan on referencing the figure later.

Referencing Figures

Figure~\ref{fig:logo} is an example of a figure.

Citations

  • The home of referenced material will be document/ref.bib, where exist a lot of examples for various types of sources.

  • The following source:

@book{this-is-source-label,
  author        = "H. E. Rose",
  title         = "A Course in Number Theory",
  publisher     = "Oxford Univ. Press",
  location      = "New York",
  year          = "1988",
  chapter       = "3"
}

is referenced in the document with \cite{this-is-source-label}.

Result in the Bibliography: [1] H. E. Rose, A Course in Number Theory . New York: Oxford Univ. Press, 1988, ch. 3.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages