To include a figure within an Overleaf document you first have toupload it to your project. Assuming you have loaded thegraphicxpackage into your document preamble: \usepackage{graphicx} you specify the (typeset) size of the image using thescale=...option of the\includegraphicscommand:...
this video, Vince shows how to quickly write out matrices in LaTeX, using theamsmathpackage and the\pmatrix(for a matrix with curly brackets),\matrix(for a matrix with no brackets), and\vmatrix(used to denote the determinant of a matrix) commands. Here's the code for the final example...
This is the fifth video in a series of 21 byDr Vincent Knightof Cardiff University; it shows how to include tables in your LaTeX documents using thetabluarenvironment. Through a short example you'll see how to include rows and columns with horizontal and vertical dividers, and with different...
An online LaTeX editor that’s easy to use. No installation, real-time collaboration, version control, hundreds of LaTeX templates, and more.
You can upload a .bib file via the files menu, and then it should all work as normal - see theLaTeX Wikibookfor more detailed information on bibliographies in LaTeX. As an example, if you're using the natbib package, the relevant commands would look like: ...
If you add \usepackage{authblk} to your preamble, you can then fill in the author and affiliation commands with the information you need. As an example, for a paper with two authors you could write: \documentclass{article} \usepackage{authblk} \title{A random walk in \LaTeX} \author[...
Why the interest in latexmkrc? We've recently had a number of users get in touch to ask how to do certain things with Overleaf, to which our answer has begun: "Firstly, create a custom latexmkrc file in your project...". Given that this isn't the most intuitive part of LaTeX, ...
It's really important to add captions to figures when writing a thesis. This is what it looks like compiled:Notice that LaTeX has automatically numbered it according to what chapter it's part of. It is also really important to label each figure so you can accurately refer back to it ...
This is the eighth video in a series of 21 byDr Vincent Knightof Cardiff University. Here we see how to add sections and subsections to your LaTeX documents, and how to refer to them using the \ref and \label commands. By using\labeland\refcommands, the references always point...
This is the sixth video in a series of 21 byDr Vincent Knightof Cardiff University. This short tutorial shows how to add an image file (png, jpg, pdf) to your LaTeX document, how to display it using the\includegraphicscommand, and how to adjust the width and positioning. ...