Repository for the international webinar 2021, prepared with Jade, ITM, and Óbuda universities.
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.

100 lines
3.7 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. # How to Write your Next Thesis in LaTeX #
  2. *An International Webinar between Instituto Tecnológico de Morelia, Jade University of Applied Science and Óbuda University*
  3. # Repository organization
  4. The repository is organized in the next way. The `1_basics` folder includes information (presentations or guides), examples source code, and any other useful information that the attendant can review during or after the webinar.
  5. # Webinar Contents ##
  6. Here you can find the highlights of each day lecture, to avoid repetitive points during the webinar.
  7. -------
  8. ## Day 1: Introduction (Marx)
  9. * What is LaTeX?
  10. * How LaTeX works?
  11. * Exploring Overleaf (Windows, organization, files)
  12. * Compiling a basic document
  13. * Using basic commands and definitions
  14. * document options and geometry
  15. * Defining new vars, paragraph spaces, tabulation space, and text sizes
  16. * A dummy text definition command
  17. Here are some basic but useful information about the eexamples and packages that we use during the webinar. If you require more deep information you can visit the links provided along the Readme file.
  18. ### Example 1: Hello LaTeX
  19. A basic example to test any LaTeX distribution is:
  20. ```TeX
  21. \documentclass{standalone}
  22. \begin{document}
  23. Hello \LaTeX{}
  24. \end{document}
  25. ```
  26. ### Example 2: Fonts and Styles
  27. #### Latex Font Formats
  28. Font formats, like bold or italics, are useful for highlight important text section by taking the reader's attention. Next are listed the most common used formats; if you need a detailed manual please look the [LaTeX2e font selection manual](https://www.latex-project.org/help/documentation/fntguide.pdf).
  29. | Code | Notes |
  30. |------|------|
  31. |`\textbf{}`| for bold text|
  32. |`\textmd{}` |for medium|
  33. |`\textit{}` |for italics|
  34. |`\textsl{}` |for slanted|
  35. |`\underline{}` |for underline|
  36. |`\textsc{}` |for small capital letters|
  37. |`\uppercase{}` |for large capital letters|
  38. |`\textsuperscript{}`| for raised text|
  39. |`\textsubscript{}`| for lowered text|
  40. |`\texttt{}` |for terminal text|
  41. |`\oldstylenums{}` |for old number font|
  42. ### Example 3: Geometry and Lengths
  43. #### Geometry package
  44. The documents geometry can be handle by natural LaTeX commands. Howeever, there is a useful package to make it easier. The package is `Geometry`.
  45. ![](https://sharelatex-wiki-cdn-671420.c.cdn77.org/learn-scripts/images/f/fc/Layout-dimensions.png)
  46. ##### Units
  47. The next table list the valid units used on LaTeX [^1].
  48. | Abbreviation | Value |
  49. |--------------|--------|
  50. | `pt` | a point is approximately 1/72.27 inch, that means about 0.0138 inch or 0.3515 mm (exactly point is defined as 1/864 of American printer’s foot that is 249/250 of English foot)|
  51. |`mm`| a millimeter|
  52. |`cm`| a centimeter|
  53. |`in`| inch|
  54. |`ex` |roughly the height of an 'x' (lowercase) in the current font (it depends on the font used)|
  55. |`em` |roughly the width of an 'M' (uppercase) in the current font (it depends on the font used)|
  56. |`mu` |math unit equal to 1/18 em, where em is taken from the math symbols family|
  57. [^1]: Extracted from [Overleaf](https://www.overleaf.com/learn/latex/Lengths_in_LaTeX)
  58. ----
  59. ### Day 2: Document Classes and Sectional Units ###
  60. ### Day 3: Equations, Tables and Figures (Marx) ###
  61. ### Day 4: Plots with PGFPlots package(Marx) ###
  62. * Making plots from equation
  63. * Plotting data from a simple experiment
  64. * Title, labels, and ticks configuration
  65. * Multi-trace plots and its configuration
  66. * Bar and scatter plots
  67. * Reading data from a `CSV` files
  68. ### Day 5: References with Bibtex (Kai) ###
  69. What is a reference?
  70. What is a good reference?
  71. * A simple reference Workflow with BibTEX
  72. * Citation Styles
  73. * Workflow Improvements
  74. * Tools
  75. * BibTEX
  76. * JabRef
  77. * Citavi
  78. * Zotero
  79. Certficates
  80. Feedback session