3

I'm new to LaTeX but have already read so much about it. Now, as I write my first long document, I notice that my head can't process all of this new information ;) For example creating a float - and I am like "Hmm what's the option that places a float at the bottom of the page? Or on its own page?"

What is your way for remembering these commands, especially if you only use them once in a while? Did you write your own short documentation or do you look up every question online?

1 Answers1

2

I use an editor (Sublime Text) where I can make snippets to expand into for instance floats (figures, tables) with my preferred setup.

For instance, typing "fig" and hitting tab expands to the following

\begin{figure}[htbp]
    \centering
    \includegraphics[width=0.95\textwidth]{}
    \caption{caption}
    \label{fig:label}
\end{figure}

This way I make my typing quite efficient, and it can help me to remember details in the coding.

But in general; the way you learn LaTeX is to write documents, check out solutions online (from for instance this brilliant community), and eventually all the small details will become very natural.

Holene
  • 6,920