LaTeX

Ubiquitous plain text math text editor

Though I thought that I had seen the extent of LaTeX’s\LaTeX\text{'s} functionality in college and grad school, it would be at my first job where the true usefulness of program would come into view.

The fact that it processes plain text files opens up many doors over Word's proprietary format. For the seismic calculations that I was part of, LaTeX\LaTeX was part of the report pipeline which required barely any interaction with a GUI.

Rather than creating documents word by word, the workflow allowed for the direct production of LaTeX\LaTeXsections upon preprocessing of the FEM analysis. At this point I would realize that the limitations of Word documents and how plain text is just an overall more efficient method of transmitting ideas.

Example Images

One of the things that would get in my way during school, is that I would want to get the figures together before writing the paper. This was little more than just procrastination with more steps. Here is something that I wish that I had known about: place holder images which can be replaced with an image later, without disturbing formatting. I'm looking at you Microsoft Word. Go here for a full list of options. There is even an example movie, surprisingly.

\includegraphics[width=\textwidth]{example-image-a}

List of Online Resources

  • PGF Plots are a library of LaTeX figures such as this, volume under graph

  • What's the Tex for that? Draw a math character and it will give you a score, the Tex mode and any packages needed.

  • Codecogs: an online equation

Overlapping Braces from Stack Exchange

Use of math in paragraph entry nn\

a+b+ \rlap{ \overbrace{ \phantom{c+d+e+f+g}}^x}c+d + \underbrace{e+f+g+h+i}_y +k+l =e^2
a+b+\rlap{\overbrace{\phantom{c+d+e+f+g}}^x}c+d   
+\underbrace{e+f+g+h+i}_y +k+l=e^2

Normal or Gaussian Distribution

f(x)=1σ2πe12(xμσ)2f(x)=\frac{1}{\sigma \sqrt{2 \pi}} e^{-\frac{1}{2}\left(\frac{x-\mu}{\sigma}\right)^{2}}

Logistic Distribution

e(xμ)/ss(1+e(xμ)/s)2\frac{e^{-(x-\mu) / s}}{s\left(1+e^{-(x-\mu) / s}\right)^{2}}

Logistic Function

11+e(xμ)/s\frac{1}{1+e^{-(x-\mu) / s}}

sample figures from pgfplots

Bibliographies

Ottobib bibliography generator from isbn

doi formatter to bib

tree generator

Geogebra can make diagrams in tikz but cant do it through its website, unfortunately

latex prettifier kinda like lint

Side By Side figures

\begin{frame}{Introduction}
\begin{figure}[H]
\centering
\begin{minipage}{.5\textwidth}
  \centering
  \includegraphics[width=.5\linewidth, height=100px]{example-image-a}
\end{minipage}%
\begin{minipage}{.5\textwidth}
  \centering
  \includegraphics[width=.5\linewidth, height=100px]{example-image-b}
\end{minipage}
\end{figure}

\end{frame}

Last updated