Category: LaTeX
-
Partial derivative shortcut in LaTeX
Read moreThis is incredibly simple code but may be of use to some people. Typing out derivatives in LaTeX (e.g. ) can be shortened. Add this line of code to the header of your document: [code]…
-
Some help with common LaTeX problems
Read moreWhat’s the easiest way to include a graphic (or graph, diagram, figure etc.) in my document? [code] \documentclass{article} \usepackage{graphicx} \begin{document} \begin{figure}[h] \centering \caption{This is my picture} \includegraphics[width=5in,height=3in]{adamsmith.jpg} \end{figure} \end{document} [/code] Then compile using pdflatex. I’m…