Last active
May 25, 2023 09:11
-
-
Save balos1/74472290608eec12539f2fdc7b9074da to your computer and use it in GitHub Desktop.
A Lab Report LaTex Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
% University/School Laboratory Report | |
% LaTeX Template | |
% Version 3.1 (25/3/14) | |
% | |
% This template has been downloaded from: | |
% http://www.LaTeXTemplates.com | |
% | |
% Original author: | |
% Linux and Unix Users Group at Virginia Tech Wiki | |
% (https://vtluug.org/wiki/Example_LaTeX_chem_lab_report) | |
% | |
% Modified by: | |
% Cody Balos | |
% (http://github.com/cojomojo) | |
% Version 1.0 (3/3/17) | |
% | |
% License: | |
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/) | |
% | |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
%---------------------------------------------------------------------------------------- | |
% PACKAGES AND DOCUMENT CONFIGURATIONS | |
%---------------------------------------------------------------------------------------- | |
\documentclass{article} | |
\usepackage[version=3]{mhchem} % Package for chemical equation typesetting | |
\usepackage{siunitx} % Provides the \SI{}{} and \si{} command for typesetting SI units | |
\usepackage{graphicx} % Required for the inclusion of images | |
\usepackage{natbib} % Required to change bibliography style to APA | |
\usepackage{amsmath} % Required for some math elements | |
\setlength\parindent{0pt} % Removes all indentation from paragraphs | |
\renewcommand{\labelenumi}{\alph{enumi}.} % Make numbering in the enumerate environment by letter rather than number (e.g. section 6) | |
%\usepackage{times} % Uncomment to use the Times New Roman font | |
%---------------------------------------------------------------------------------------- | |
% DOCUMENT INFORMATION | |
%---------------------------------------------------------------------------------------- | |
\title{Determination of the Atomic \\ Weight of Magnesium \\ CHEM 101} % Title | |
\author{John \textsc{Smith}} % Author name | |
\date{\today} % Date for the report | |
\begin{document} | |
\maketitle % Insert the title, author and date | |
\begin{center} | |
\begin{tabular}{l r} | |
Date Performed: & January 1, 2012 \\ % Date the experiment was performed | |
Partners: & James Smith \\ % Partner names | |
& Mary Smith \\ | |
Instructor: & Professor Smith % Instructor/supervisor | |
\end{tabular} | |
\end{center} | |
% If you wish to include an abstract, uncomment the lines below | |
% \begin{abstract} | |
% Abstract text | |
% \end{abstract} | |
%---------------------------------------------------------------------------------------- | |
% BIBLIOGRAPHY | |
%---------------------------------------------------------------------------------------- | |
\bibliographystyle{apalike} | |
\bibliography{sample} | |
%---------------------------------------------------------------------------------------- | |
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@BOOK{Smith:2012qr, | |
title = {Chemistry}, | |
publisher = {Publisher}, | |
author = {Smith, J.~M. and Jones, A.~B.}, | |
year = {2012}, | |
edition = {7th}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment