this post was submitted on 22 May 2024
983 points (97.9% liked)

Science Memes

10322 readers
2322 users here now

Welcome to c/science_memes @ Mander.xyz!

A place for majestic STEMLORD peacocking, as well as memes about the realities of working in a lab.



Rules

  1. Don't throw mud. Behave like an intellectual and remember the human.
  2. Keep it rooted (on topic).
  3. No spam.
  4. Infographics welcome, get schooled.


Research Committee

Other Mander Communities

Science and Research

Biology and Life Sciences

Physical Sciences

Humanities and Social Sciences

Practical and Applied Sciences

Memes

Miscellaneous

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 4 points 3 months ago (1 children)

I become a software developer later in life and never had the privilege to go to university, so sometimes I’m out of the loop on older tech.

How did Latex compare to modern Git?

[–] [email protected] 6 points 3 months ago (1 children)

Latex is no versioning tool but a textsetting language. It outputs perfectly formatted Documents after building and takes care of aranging images, quotes and all the tedious stuff so after setting up your template you only have to care about content. It works well with git.

Not like word where adding an image fucks the whole formatting.

[–] [email protected] 3 points 3 months ago (2 children)

Interesting.

Yeah word sucks. I’m a software developer now and have to deal with Word and Excel more than I ever thought I would.

[–] [email protected] 3 points 3 months ago

I'm a softwaredev too, we use this for our manual. Its writen in markdown, which we convert with pandoc to latex. We can use git for versioning and merging and the manuals always look very nice.

[–] [email protected] 2 points 3 months ago

As a software developer, LaTeX makes writing documents feel elegant in the way good code is elegant. No more manually going back and saying things like "as shown in diagram 4" and updating the number when the number of diagrams changes; LaTeX can do that for you by referencing the object. Citations and bibliography are an absolute breeze to generate. It can generate various kinds of plots and diagrams themselves for you, making it much easier when you then need to make changes to it later.

With the right packages (think: code libraries) you can do all sorts of things. I like the acrodef and ac commands which lets you specify a bunch of acronyms, and then the first time you use them in a document it automatically expands it to the full version, but uses the acronym on all subsequent uses. When writing code snippets, you can have it automatically apply the correct syntax highlighting for the language you specify; though this is admittedly a feature many markdown implementations also have.