Docker LaTeX Setup with vscode and Grammarly

Passionate about software development and architecture, web and cloud technologies, as well as game development.
Search for a command to run...

Passionate about software development and architecture, web and cloud technologies, as well as game development.
No comments yet. Be the first to comment.
Why CDKTF was my favorite IaC tool

Less Code, Faster Iteration: AI and Smarter Tools Accelerate Productivity in Modern Web Development

Understanding how executable binaries actually work

Learning how the IMAP protocol actually works

I recently had a discussion with a colleague about whether we should introduce a character count limit per line into our style guide. He believes it enhances readability, while I argue that readability should be facilitated by the editor or IDE, not ...

LaTeX is a document preparation system, which builds .pdf documents from text and commands for formatting. I use it to write academic research papers and other documents, like my résumé.
I wanted an easy setup for a powerful LaTeX environment using an extensible IDE with Grammar.ly integration, running in Docker so my system stays clean.
So the requirements for the setup were:
Thanks to the awesome vscode extension latex-workshop, which recently added Docker support, this was quite easy to achieve.
Requirements:
Here are the steps:
If you have a Grammarly account, log in by specifying
"grammarly.username": "your grammarly email",
"grammarly.password": "your grammarly password",
I also like to add the following configuration values:
// Grammarly academic writing style
"grammarly.domain": "academic",
// always open pdf preview in new vscode tab
"latex-workshop.view.pdf.viewer": "tab",
I also use the vscode Material Icon Theme plugin in my LaTeX projects.
Which vscode plugins do you use in your LaTeX projects?
Have fun!