The repository includes a great configuration for shown listings in LaTeX with the option to show only a specific range of line numbers.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
845 B

4 years ago
  1. \documentclass{article}
  2. \usepackage{blindtext}
  3. \usepackage{graphicx}
  4. \begin{document}
  5. \section{Introduction}
  6. \label{sec:intro}
  7. Now I'm using label command to create cross-references, e.g. in section \ref{sec:review} a literature review is presented, in section \ref{sec:method} the methodology is presented, and so on...
  8. \section{Literature review}
  9. \label{sec:review}
  10. \blindtext[1]
  11. \section{Methodology}
  12. \label{sec:method}
  13. In the Fig. \ref{fig:image-a} the methodology is presented.
  14. \begin{figure}[!h]
  15. \centering
  16. \includegraphics[width=3in]{example-image-a}
  17. \caption{The caption of the figure}
  18. \label{fig:image-a}
  19. \end{figure}
  20. \section{Preliminary data}
  21. \label{sec:pre}
  22. \blindtext[1]
  23. \section{Statement of limitations}
  24. \label{sec:limitations}
  25. \blindtext[1]
  26. \section{Conclusions}
  27. \label{sec:conclusions}
  28. \blindtext[1]
  29. \end{document}