i could probably add a fourth panel about using LaTeX but i don’t understand it enough to say for sure

    • tyler@programming.dev
      link
      fedilink
      English
      arrow-up
      20
      ·
      8 days ago

      They’re moving from a low brain strat of docx to a higher brain strat of markdown (which can be converted to many other formats with pandoc) to finally using git to manage them. Then they state they should learn LaTeX.

    • spujb@lemmy.cafeOP
      link
      fedilink
      English
      arrow-up
      11
      ·
      8 days ago

      for writing, it’s great. And the once you’re ready for submission/publishing md converts into new formats super smoothly

      • PM_ME_VINTAGE_30S [he/him]@lemmy.sdf.org
        link
        fedilink
        English
        arrow-up
        3
        arrow-down
        1
        ·
        8 days ago

        I know that Markdown does have an embedded LaTeX mode, but what if you need to use LaTeX packages like to number equations, do aligned equations, or cook up a macro to keep track of notation?

        Also I’m pretty sure in my department we gotta submit a .tex file, but I’m in STEM so I’m a bit biased.

        • rustydrd@sh.itjust.works
          link
          fedilink
          English
          arrow-up
          8
          ·
          8 days ago

          When generating PDFs via pandoc, Markdown can contain any LaTeX directive, including packages in the preamble and any environments in the document. Pandoc converts the .md file into a .tex file based on the template you chose, and it allows both saving the .tex file and writing your own templates.