Hullo scientists, fellow researcher here with a question for peers:

Do you have any suggestions for closed-off writing software (no AI scraping, no school oversight, no cloud storage with mysterious and unknown security). As we are all aware, formatting an article can take as much effort as writing the damn thing some days, especially if you do not want to use Microsoft or Google for ethical and privacy reasons.

My peers and I work with a lot of students who want to study and work with vulnerable populations, the sort of populations that some companies and (shameful) universities are attempting to delete evidence of. I am attempting to address some concerns coming up in the classroom without putting my career at risk. What better way than with a lesson and a resource list for secure writing and storage tips?

The school doesn’t pay for a Microsoft license, and some students have expressed feeling unsafe and uncomfortable supporting google. I have suggested Libreoffice as its what I use but some of the students are really struggling with formatting their papers to academic standards in this software. Admittedly, I agree, Libre takes 7-14 steps to do some things google can do in two clicks. I would like to look into alternatives.

Most of the writing applications I’m seeing both free and paid tend to be for creative writers or note taking and I am not seeing tools to make running titles or easily format your sources.

What are you all using, do you have recommendations? I

  • Donkeywitch@lemmy.worldOP
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    6 days ago

    interesting, could you tell me a little more about this? I am on their webpage and they emphasize that they are not a word processor application. I am looking at this page on APA formatting examples and thinking that it could be very useful for my graduate classes but probably a bit above (terrify the shit out of) the sophomore class. It seems to require some knowledge of script writing. I’ll add it to the list because I’m sure a lot of folks will use it but I think that image alone would have some of my students going down to the office to switch majors XD

        • Rowan Thorpe@lemmy.ml
          link
          fedilink
          English
          arrow-up
          2
          ·
          4 days ago

          For a powerful and resilient LaTeX experience, having used many editors and IDEs, I really feel nothing comes close to a properly configured Emacs with the right packages installed (there are various blogposts and walkthroughs online for that).

        • hinterlufer@lemmy.world
          link
          fedilink
          English
          arrow-up
          1
          ·
          6 days ago

          TeXStudio if you want something that is easy to set up. VSCode + LaTeX Workshop if you need features from VSCode (other extensions, git integration,…).

          Note that you still have to bring your own LaTeX installation (I always use TeXLive, but there are other options)

          For literature I’ve found Zotero + BetterBibTeX plugin very nice, otherwise JabRef also exists but is much more “raw”.

        • gnome@programming.dev
          link
          fedilink
          English
          arrow-up
          1
          ·
          edit-2
          6 days ago

          I wrote my MSc. thesis using Texmaker, and I’ve dabbled a bit with TeXstudio. I’m partial to Texmaker simply because of how easy it was to integrate bibliography and dictionaries, spin up code snippets/templates, customize build flows, debug errors, and embed different image types.

          You can experiment with a few editors if you like. Ultimately, it’s the one that you feel most comfortable that will work best because the code is the same.

    • wjs018@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      6 days ago

      It’s been a while since I last used LaTeX since I am in industry now, but there is definitely a learning curve. If you are talking about undergrads, then it might be too steep a challenge for most to want to take on unless they plan on pursuing academia long-term. Like others have mentioned, LaTeX is a kind of standard that you see used a lot in academic circles. Some journals also like or support things that are created through tex and will have their own templates to use.

      Basically, LaTeX consists of writing in a markup language, like your screenshot, and then running that through a processor that interprets your .tex file and creates the formatted output (usually a pdf). Back in my day, TexnicCenter was the program of choice to write the actual .tex file, but some quick searching and it looks like VSCode with an appropriate extension is probably one of the best/easiest ways to do it now.

      The most annoying part of tex is references. I remember being utterly confused by BibTeX when I was trying to get it to work. I am way out of date on what best practices for today might be, but I hope they have improved that process somewhat.

      • hinterlufer@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        6 days ago

        Reference management is one thing LaTeX is really good at. Especially if you use it with a literature management system such as Zotero.

        VSCode + LaTeX Workshop Extension is what I use today, but I would recommend TeXStudio as editor if you don’t need any specific features from VSCode.

    • rescue_toaster@lemm.ee
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      6 days ago

      I teach my physics undergraduates the basics of latex for writing. They usually figure it out. It’s basically like writing some code. The biggest pain are graphs. And like a lot of code these days, chatgpt can help a lot.

      If you just need to write basic text formatted using apa, you could find or create a template and give it to your students. Then they won’t even need to think about the formatting cause the template will deal with it all correctly.

      Oh, i should add, in that screenshot, most of that code creates the fornatting. Once that is set, your actual content with words and paragraphs looks mostly like text.

      Start with a minimal preamble and start testing it out.