Document Classes ⇒ Document class for a laboratory report ?
Document class for a laboratory report ?
The paper must have a front page, with a bold title at about 2/3 of the height of the page, with two names centered under the title. The names must be in a vertical list, not both on the same line.
There must be a date in the upper-right corner, and another name centered at the bottom of the title page.
The document is one side only, and has a margin of one inch all around (of course, the pages are 8.5" X 11").
The second page must have an introduction sub-title in bold, placed to the left, and a text paragraph under it. There is no table of contents, and the text is in a single column. The rest should be pretty standard.
The page number should be centered at the bottom or in the bottom-right corner.
How should I create this document in LaTeX ? What should be the best class ? Any suggestion ?
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Document class for a laboratory report ?
The tilepage, can be designed easily, as well as the rest.
You are an experienced user, where exactly do you need help?
Right now, you are asking for different things and the answer is: Yes, you can do that with LaTeX.
Document class for a laboratory report ?

- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Document class for a laboratory report ?
Document class for a laboratory report ?
From the code below, the date doesn't appears at a proper location. It's currently too close to the first line of text and it should be higher (inside the title page header ?) :
Code: Select all
\documentclass[12pt,oneside]{report}\usepackage[total={6.5in,10in},left=1in,top=0.5in,includehead,includefoot]{geometry}\begin{document}\begin{titlepage}{\hfill \today \par} % Date to be fixed\centering{\scshape\large A line of text \par}\vspace{1in}{\scshape\large Another line of text \par}\vspace{1in}{\huge\bfseries Big title \par}\vspace{0.5in}{\large Name 1 \par}{\large Name 2 \par}\vfill{\large Some name}\end{titlepage}\section{Title}bla bla bla\end{document}
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Document class for a laboratory report ?
this code works on Overleaf. Just click the link above the code box here. I tried it.
Btw. the
report
class is for big reports. It's chapter based, that's why your section is 0.1 instead of 1, since it's in chapter 0 because you did not use a \chapter
command. I guess the article
class would be better for your case.Stefan
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Document class for a laboratory report ?
Document class for a laboratory report ?
Here's the code for reference :
Code: Select all
\documentclass{article}\usepackage[letterpaper,margin=1in,%showframe]{geometry}\usepackage{blindtext}\begin{document}\begin{titlepage}\hfill \today\vspace{.2\textheight}\begin{center}{\LARGE\bfseries Title of the report\par}\vspace{3cm}Carl Capybara \parWalter Wombat \par\end{center}\vfill\centering Philip Platypus \par\end{titlepage}\section{Equipment}\blindtext\end{document}

Document class for a laboratory report ?
About the overleaf, I'm experiencing a curious glitch on my browser, apparently. I'll check this later.