Latex

Create Beautiful LaTeX Tables with Pandas & Python

March 5, 2026

Generate Publication-Ready LaTeX Tables from CSV Using Pandas — For Researchers & Data Scientists

You’ve spent hours manually formatting a LaTeX table for your research paper. Then your advisor asks you to re-run the analysis with different parameters. Now you’re staring at 200 lines of hand-coded \hline and & delimiters, knowing you’ll have to rebuild the entire table from scratch—and probably introduce formatting errors in the process.

This is the reproducibility killer that stops science dead in its tracks.

Create Course Materials in Markdown + Pandoc

March 5, 2026

Create Professional Course Materials in Markdown Using Pandoc — A Complete Workflow for Teachers & Professors

You’re spending hours formatting exercise sets, lab work, and quizzes in Word or Google Docs—adjusting margins, fixing font inconsistencies, regenerating the same content in three different formats. What if you could write once in Markdown and generate polished PDFs, HTML, and more in seconds?

Markdown + Pandoc eliminates this friction entirely. You write your exercises, quizzes, and lab work once in plain text, store it in version control, and convert it instantly to publication-ready PDFs and interactive HTML. No more juggling file formats or losing formatting when sharing with colleagues.

LaTeX in Inkscape: The Correct Way (Tutorial)

March 5, 2026

Embed LaTeX Equations in Inkscape Without Extensions — A Beginner’s Guide to Two Methods

You’ve designed a technical poster in Inkscape and now need to add a complex equation. You’ve heard LaTeX is the way to go, but you’re stuck: Do you need to install extensions? Will it break your workflow? Can you actually edit equations after you place them?

This is the friction point that stops most beginners from using LaTeX in Inkscape at all.

LaTeX in VSCode 2026: LaTeX Workshop Complete Setup

March 5, 2026

Set Up LaTeX in VSCode Without Terminal Headaches — For Researchers & Students Writing Theses

You’ve started a thesis, research paper, or technical document. You open VSCode—your favorite editor—but LaTeX won’t compile. You’re stuck toggling between a terminal window, a PDF viewer, and your editor. The setup feels fragmented, slow, and error-prone.

What if you could write, compile, and preview your LaTeX document all in one place?

That’s what LaTeX Workshop does. This guide gets you from zero to a working LaTeX environment in 15 minutes—no terminal wrestling required.

Master Markdown for Research — Write Once, Export Anywhere

March 5, 2026

Master Markdown for Research — Write Once, Export Anywhere

You’re switching between Microsoft Word, Google Docs, and LaTeX for different research outputs. Each tool has its own quirks. You spend 20 minutes reformatting a heading. You copy-paste tables and watch them break. You want to write once and stop fighting with software.

Markdown solves this. It’s the format that works everywhere—GitHub, LLMs, Jupyter, Obsidian, and Pandoc. And you can learn it in under one hour.

Supercharge TeXstudio: Local AI Chat Without APIs

March 5, 2026

Set Up a Local LLM Inside TeXstudio Without Cloud APIs — For LaTeX Writers Who Want Privacy

You’re writing a LaTeX paper, and you want AI assistance—but you don’t want to pay per API call, send drafts to external servers, or depend on internet connectivity.

Right now, TeXstudio’s AI Chat Assistant only connects to OpenAI or Mistral. There’s a third way: run an LLM locally and connect it directly to TeXstudio in 15 minutes.

TexText: LaTeX + Inkscape Integration for Vector Graphics

March 5, 2026

Combine Inkscape + LaTeX for Stunning Visuals Using TexText

You’ve spent hours perfecting an equation in LaTeX, then opened Inkscape to add it to a figure, only to realize you need to recompile, export as PDF, and start over. Or worse: your advisor asks you to change a coefficient in a figure, and you’re hunting through old source files.

The real pain is this: LaTeX gives you typesetting perfection but locks you into a document. Inkscape gives you design freedom but can’t handle equations or TikZ code natively. Switching between them kills your workflow and forces endless recompilation cycles.

Overleaf Dark Mode & Markdown Paste: Hidden Features

March 4, 2026

You’re staring at a blinding white PDF preview at 11 PM, trying to finish your paper. Your eyes hurt. You’ve got structured notes in Obsidian or ChatGPT output in markdown, but you’re manually retyping section headers into LaTeX syntax. There’s a better way—and it’s already built into Overleaf.

Two Hidden Features That Actually Matter

PDF dark mode inverts your preview to a dark background without touching your exported document. Visual editor markdown paste converts markdown structure—headings, lists, formatting—directly into LaTeX when you paste. Both work on free accounts. No extensions required.

TeXstudio AI Macros: GPT-4 Inside LaTeX

March 4, 2026

Install AI Writing Macros Inside TeXstudio — For Academic Researchers and Technical Writers

Series Navigation: This is Part 1 of the LaTeX AI Assistant series. Part 2 (video generation with AI) coming soon.


You’re deep in writing a research paper when you need to expand a paragraph, explain a complex equation, or generate a methods section from scratch. Instead of context-switching to ChatGPT, copying text back and forth, and reformatting everything — what if you could invoke GPT-4 directly inside your LaTeX editor with a keyboard shortcut?

Write Research Papers in Markdown + Pandoc

March 4, 2026

You’re staring at a LaTeX error message for the 47th time today. Your paper deadline is tomorrow, but you’re debugging \begin{figure} placement instead of refining your argument. There’s a better way: write in clean Markdown, get publication-ready PDFs with equations, cross-references, and IEEE/Springer formatting—all without touching LaTeX syntax until the final export.

What This Workflow Replaces

Direct LaTeX editing becomes Markdown + Pandoc conversion. You write in readable .md files with simple syntax for headings, citations, and figures. Pandoc (a universal document converter) transforms your Markdown into professional PDFs or LaTeX source files, using pandoc-crossref for numbered references and citeproc for bibliographies. Output matches journal templates—single-column, two-column IEEE, ACM formats—without manual \documentclass configuration.

Auto Publication List

June 1, 2025

Overview

Auto Publication List is a lightweight automation pipeline that keeps your publication list up to date without manual intervention. It fetches your Google Scholar profile export and generates both a BibTeX bibliography file and a LaTeX metrics snippet.

How It Works

  1. Fetch — Downloads your Google Scholar export (BibTeX-like text) using your Scholar user ID
  2. Parse — Cleans and normalises the entries into valid BibTeX format
  3. Metrics — Extracts citation counts, h-index, and i10-index and writes them to metrics.tex
  4. Export — Outputs publications.bib ready to include in any LaTeX document

Usage

from update_publications import fetch_scholar_publications

# Fetch and export
fetch_scholar_publications(user_id="YOUR_SCHOLAR_ID", output_dir="./output")

GitHub Actions Integration

Add the workflow to your repository to run on a schedule: