this post was submitted on 10 Mar 2025
157 points (93.9% liked)
Science Memes
13138 readers
2012 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
- Don't throw mud. Behave like an intellectual and remember the human.
- Keep it rooted (on topic).
- No spam.
- Infographics welcome, get schooled.
This is a science community. We use the Dawkins definition of meme.
Research Committee
Other Mander Communities
Science and Research
Biology and Life Sciences
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- !reptiles and [email protected]
Physical Sciences
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
Humanities and Social Sciences
Practical and Applied Sciences
- !exercise-and [email protected]
- [email protected]
- !self [email protected]
- [email protected]
- [email protected]
- [email protected]
Memes
Miscellaneous
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Clearly flawed methodology.
The value of LaTeX isn't productivity when making a single document.
The value of LaTeX is productivity when you need to reuse past work, or update it with the latest data and figures, or make a collection of similar documents.
And the ease with which you can generate hundreds of lines of page with a simple text template and code.
Right.
Do your writing in text files accompanying the image files (figures). The LaTeX code is just instructions for how to render the various text sources arrange the figures on pages to be printed or rendered as slides.
It separates the flowing creative experience of writing and documenting what happened in the experiment from the fiddling creative experience of rendering, editing, and presentation to ensure that the text and figures line up appropriately and are on appropriate pages.
Separating fact finding from presentation is an important barrier in the scientific method.
Yup. When I rerun my things, in latex I just overwrite the plots file (pdf/png) and compile latex. In word I have to find where it was and replace it there. It's way easier on latex if you make your code just write plot files in the same location.
You can use a symlink to point to the
figures
directory of a certain run of the code. Add git history to the mix, and now you have an auditable record of what version of the code's output ended up in each version of the paper.You can be so anal and precise about everything.
Yup simlink is so nice. I sometimes use it for color vs monocrome plots. Change simlink and compile. Although I learned you can also use if statements in latex, I use that now.