GeneralNew to LaTeX --- Can you review my document?

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
elmariachi
Posts: 9
Joined: Sat Nov 22, 2008 7:00 pm

New to LaTeX --- Can you review my document?

Post by elmariachi »

I discovered LaTeX recently and I'm loving it :D

still... there are some things that always seem beyond my grasp.

could you review this document and give me some tips on how can I make it look even better?

It's written in portuguese, but what's written isn't completely relevant. It's a Biochmestry report.


The section "Resultados" (results) shows some of the calculations and that part needs some serious formatting.

also.. is it possible to make the ( ) on some equations be as high as the \frac{}{} ?
thanks fellas :D
Attachments
relatorio-tampoes.tex
(18.02 KiB) Downloaded 303 times
relatorio-tampoes.pdf
(239.13 KiB) Downloaded 291 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

New to LaTeX --- Can you review my document?

Post by localghost »

I quickly browsed your code a little bit and perhaps found some points for enhancement. Since you deal a lot with chemical equations, you should think about using the mhchem package. In some cases you also need chemical (or physical) units which can better be typeset with the siunitx package. The rules of three in your results section can be aligned with the align environment of the amsmath package. If you want them to be aligned left, use the flalign environment. The manuals of the mentioned packages will show you how to get the desired result.


Best regards
Thorsten¹
Stefanie
Posts: 25
Joined: Fri Apr 04, 2008 2:39 pm

Re: New to LaTeX --- Can you review my document?

Post by Stefanie »

i don't know if this is the stuff you're looking for, but i use the fancyhdr package a lot for customized headers and footers.
elmariachi
Posts: 9
Joined: Sat Nov 22, 2008 7:00 pm

Re: New to LaTeX --- Can you review my document?

Post by elmariachi »

localghost answered my questions :D the text looks better now and it made my life easier too thanks :D

there's still the problem of the small ( ) in a \frac{}{} is there a "cure" for that?
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

New to LaTeX --- Can you review my document?

Post by localghost »

elmariachi wrote:[...] there's still the problem of the small ( ) in a \frac{}{} is there a "cure" for that?
I oversaw this small detail. Delimiters can be adapted automatically. Mathematical operators like logarithm are predefined as commands.

Code: Select all

\begin{equation}\label{eqn:hassel}
  pH=pKa+\log\left(\frac{[A^-]}{[HA]}\right)
\end{equation}
You should do some reading about LaTeX basics. For the present I suggest to take a look at lshort as an introduction.
Post Reply