Copy as LaTeX

by mo-seph
5
4
3
2
1
Score: 28/100

Description

Category: Note Enhancements

The Copy as LaTeX plugin is a lightweight Obsidian extension that enables users to easily convert their notes and writings into LaTeX format. With its simple and quick conversion process, this plugin is perfect for those who want to maintain control over the formatting of their documents while still enjoying the benefits of writing in Markdown.

The plugin supports various text features such as lists, headings, bold and italic text, external links, and special characters. It also handles code blocks, citations, cross-references, and bibliographies with ease. The citation feature is particularly noteworthy, allowing users to define templates for different citation styles and formats.

One of the unique features of this plugin is its ability to copy missing citations from a bibliography, making it easy to update references in a LaTeX document. With its straightforward configuration options and customization possibilities, the Copy as LaTeX plugin is an excellent choice for anyone looking to streamline their writing process and produce high-quality documents.

Reviews

No reviews yet.

Stats

49
stars
11,711
downloads
7
forks
1,686
days
897
days
1,598
days
3
total PRs
2
open PRs
1
closed PRs
0
merged PRs
19
total issues
13
open issues
6
closed issues
0
commits

Latest Version

4 years ago

Changelog

README file from

Github

Copy as Latex

Designed for when you want to do most of your writing in a nice Obsidian environment, with lots of citations from a nicely managed set of references etc. Lighterweight than Pandoc, doesn't assume you're writing a whole document. The aim is to be:

  • simple
  • quick

Example

# Main Heading
Some text, of which _some_ is italic, and there is an $x=7$ equation and a [[@author2021Paper]] citation and a [https://link.com](https://link.com).

## Another heading

### SubSub Heading


Here is a list:
- item 1
- item 2
- item 3
	- subitem 3.1
	- subitem 3.2

1. First numbered item
2. Second numbered item

becomes:

\section{Main Heading}

Some text, of which \emph{some} is italic, and there is an $x=7$ equation and a \cite{author2021Paper} citation and a \url{https://link.com}.

\subsection{Another heading}

\subsubsection{SubSub Heading}

Here is a list:

\begin{itemize}
	\item item 1
	\item item 2
	\item item 3
	\begin{itemize}
		\item subitem 3.1
		\item subitem 3.2
	\end{itemize}
\end{itemize}

\begin{enumerate}
	\item First numbered item
	\item Second numbered item
\end{enumerate}

Features

This relies on https://github.com/syntax-tree/mdast-util-from-markdown, and https://github.com/syntax-tree/mdast-util-gfm for the parsing. This doesn't quite match Obsidian's feature set, but most key things are there. Text features:

  • lists - does itemize and enumerate, and nesting seems OK so far.
  • headings
  • bold
  • italic
  • External links
  • Automatic external links (except Obsidian is more generous than the GFM parser)
  • Footnotes (It only makes sense to use inline foonotes, which Obsidian supports, but not the GFM parser)
  • Highlight (again, not in GFM)
  • Special characters: & % $ # _ { } ~ ^ \

Complex features:

  • code blocks - carries through the language into a def for the listings package.
  • citations - currently looks at internal links starting with an @, and transforms into \cite{...} (or \autocite{} depending on settings)
  • Cross-references - looks at internal links starting with ^, transforms into \ref{...}
  • And turns block ids into \label{} elements
  • [~] bibliographies - it would be great to have a way to pull references out of a .bib file (experimental)
  • images - it should be possible to turn image links into something that connects to the filename
  • captions

How to use

Make sure your latex file includes the soul and listings packages, and off you go.

Citations

Citations quickly get complex - see discussion here: https://github.com/mo-seph/obsidian-copy-as-latex/issues/4. To find an accomodation between Obsidian and Latex, the Extended Citation Parsing section parses parentheses to get information surrounding refs. here is a (e.g. [[@example]] p.22) would give a citation with e.g. as the pre part and p.22 as the post part. There are then a series of templates depending on which of these are present: bare means neither, pre,post,surrounded is one or the other or both, and paren is for when pre and post are there but both blank, e.g. ([[@ref]]). This means that different points can be set up, for e.g. \citep versus \citet, e.g.:

"bare" : "\\citep{#id}",
"surrounded" : "\\cite[#pre][#post]{#id}}",
"pre" : "\\cite[#pre]{#id}}" ,
"post" : "\\cite[#post]{#id}}",
"paren" : "\\citet{#id}"	

This may change, but it currently grabs pre and post - the bits before and after the link, without spaces. These is then templated into the right form for \cite or \autocite with a user definable template, where {{[pre]}} means "use the value for pre, and if it is there, keep the square brackets; if it is not, get rid of them - so with \autocite{{(pre)}}{{[post]}}{{{id}}} and (e.g. [[@author2021Paper]] p.22), it produces \autocite(e.g.)[p.22]{author2021Paper}

Copy Citations

This is a command that lets you copy the citations that are missing from a bibliography (e.g. I've just added some text to my Overleaf, need to update the .bib file too) To use it: - Set your main bibliography file in the config (source) - Copy the current bibliography of your paper to the clipboard (target) - Run Copy Missing Citations from the command pallette. It will look for all the citation keys in the Markdown doc, and any that are present in the source and missing from the target will be copied to the clipboard.

Development

Changelog

1.9

  • Citation templates for various styles
  • Copy missing citations command

1.8

  • Escape special characters

License

This code is released under the MIT License

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Kanban
5 years ago by mgmeyers
Create markdown-backed Kanban boards in Obsidian.
Linter
5 years ago by Victor Tao
An Obsidian plugin that formats and styles your notes with a focus on configurability and extensibility.
Mind Map
6 years ago by James Lynch
An Obsidian plugin for displaying markdown notes as mind maps using Markmap.
Advanced Slides
3 years ago by MSzturc
Create markdown-based reveal.js presentations in Obsidian
Zotero Desktop Connector
4 years ago by mgmeyers
Insert and import citations, bibliographies, notes, and PDF annotations from Zotero into Obsidian.
Latex Suite
4 years ago by artisticat1
Make typesetting LaTeX as fast as handwriting through snippets, text expansion, and editor enhancements
ExcaliBrain
4 years ago by Zsolt Viczian
A graph view to navigate your Obsidian vault
Quiet Outline
4 years ago by the_tree
Improving experience of outline in Obsidian
Enhancing Mindmap
5 years ago by Mark
obsidian plugin editable mindmap,you can edit mindmap on markdown file
Citations
6 years ago by Jon Gauthier
Obsidian plugin which integrates your academic reference manager with the Obsidian editor. Search your references from within Obsidian and automatically create and reference literature notes for papers and books.
Multi-Column Markdown
4 years ago by Cameron Robinson
A plugin for the Obsidian markdown note application, adding functionality to render markdown documents with multiple columns of text.
Quick LaTeX
5 years ago by joeyuping
Excel to Markdown Table
4 years ago by Ganessh Kumar R P
An Obsidian plugin to paste data from Microsoft Excel, Google Sheets, Apple Numbers and LibreOffice Calc as Markdown tables in Obsidian editor.
CardBoard
5 years ago by roovo
An Obsidian plugin to make working with tasks a pleasure (hopefully anyway).
Sheet Plus
2 years ago by ljcoder
obsidian spreadsheets solutions
Emoji Shortcodes
5 years ago by phibr0
Emoji Shortcodes - Obsidian Plugin | Adds Support for Emoji Shortcodes to Obsidian
ReadItLater
5 years ago by Dominik Pieper
Markdown Formatting Assistant
5 years ago by Reocin
This Plugin provides a simple WYSIWYG Editor for Markdown and in addition a command line interface. The command line interface facilitate a faster workflow.
ChatGPT MD
3 years ago by Bram Adams
A (nearly) seamless integration of ChatGPT into Obsidian.
Docxer
2 years ago by Developer-Mike
🚀 Boost your productivity by previewing and converting Word files easily to markdown.
Completr
4 years ago by tth05
Auto-completion plugin for the obsidian editor.
Pandoc Reference List
4 years ago by mgmeyers
Display a formatted reference in Obsidian's sidebar for each pandoc citekey in the active document.
Links
3 years ago by MiiKey
manipulate & manage obisidian links
Table Extended
5 years ago by AidenLx
Extend basic table in Obsidian with MultiMarkdown table syntax
File Cleaner Redux
3 years ago by husjon
A plugin for Obsidian to help clean up files in your vault
Obsidian Clipper
4 years ago by John Christopher
Obsidian plugin that allows users to clip parts of a website into their obsidian daily note (or new note)
Table Generator
4 years ago by Boninall
A plugin for generate markdown table quickly like Typora.
Image Captions
3 years ago by Alan Grainger
Add captions to images with inline Markdown and link support. The caption format is compatible with the CommonMark spec and other Markdown applications.
Extended MathJax
6 years ago by Xavier Denis & Ng Wei En
Markdown prettifier
6 years ago by pelao
A markdown prettifier for obsidian
TikZJax
4 years ago by artisticat1
Render LaTeX and TikZ diagrams in your notes
Sheets Extended
3 years ago by NicoNekoru
Plugin that adds features to tables in obsidian including merging, vertical headers, and custom css
Recipe view
3 years ago by lachholden
View your Obsidian notes as interactive recipe cards while you cook.
Copy as HTML
4 years ago by Bailey Jennings
A simple plugin that copies the selected text to your clipboard as HTML
Enveloppe
4 years ago by Mara-Li
Enveloppe helps you to publish your notes on a GitHub repository from your Obsidian Vault, for free!
Chronos Timeline
2 years ago by Claire Froelich
Render interactive timelines in your Obsidian notes from simple Markdown.
Obsidian markdown export
4 years ago by bingryan
This plugin allows to export directory/single markdown to a folder. support output format(html/markdown/text)
GitHub Sync
2 years ago by Kevin Chin
Sync Obsidian vault to personal GitHub
Creases
4 years ago by Liam Cain
👕 Tools for effectively folding markdown sections in Obsidian
Slides Extended
2 years ago by Erin Schnabel (original: MSzturc)
Create markdown-based reveal.js presentations in Obsidian
Mehrmaid
2 years ago by huterguier
Rendering Obsidian Markdown inside Mermaid diagrams.
Extract url content
5 years ago by Stephen Solka
Plugin to extract markdown out of urls
Heading Shifter
4 years ago by kasahala
Easily Shift and Change markdown headings.
Latex Environments
6 years ago by Zach Raines
Quickly insert and change latex environments within math blocks in Obsidian.
MathLive
3 years ago by Dan Zilberman
The must-have plugin for math in Obsidian
Marker PDF to MD
2 years ago by L3N0X
Make use of different AI models to convert your pdfs into markdown with perfect ocr, latex formulas, tables, images and more! Supports Mistral AI OCR (free) and self hosted variants!
Markdown Attributes
5 years ago by Jeremy Valentine
Add attributes to elements in Obsidian
Slurp
2 years ago by inhumantsar
Slurps webpages and saves them as clean, uncluttered Markdown. Think Pocket, but better.
Simple Columns
a year ago by Josie
An Obsidian plugin that lets you create easily resizable and customizable columns in your notes.
Pseudocode
3 years ago by Yaotian Liu
An obsidian plugin that helps to render a LaTeX-style pseudocode inside a code block.
Reference Map
3 years ago by Anoop K. Chandran
Reference and citation map for literature review and discovery
Marp
3 years ago by JichouP
Plugin to use Marp with Obsidian
Markdown table checkboxes
3 years ago by DylanGiesberts
Obsidian plugin. Allows for the usage of checkboxes inside markdown tables.
Markdown Furigana
5 years ago by Steven Kraft
Simple Markdown to Furigana Rendering Plugin for Obsidian
Better Markdown Links
2 years ago by mnaoumov
Obsidian plugin that adds support for angle bracket links and manages relative links properly
Typst Mate
5 months ago by azyarashi
Render math expressions with Typst instead of MathJax in Obsidian.
CookLang Editor
5 years ago by death_au/cooklang
Edit and display Cooklang recipes in Obsidian
Markitdown File Converter
a year ago by Ethan Troy
Integrate Microsoft's Markitdown tool to convert various file formats to Markdown for your vault.
Image Upload Toolkit
3 years ago by Addo Zhang
An obsidian plugin for uploading local images embedded in markdown to remote store and export markdown for publishing to static site.
Tweet to Markdown
5 years ago by kbravh
An Obsidian.md plugin to save tweets as Markdown files.
Dataview Serializer
2 years ago by Sébastien Dubois
Obsidian plugin that gives you the power of Dataview, but generates Markdown, making it compatible with Obsidian Publish, and making the links appear on the Graph.
Latex OCR
2 years ago by Lucas Van Mol
Generate LaTeX equations from images in your clipboard or vault
Advanced Progress Bars
a year ago by cactuzhead
Obsidian plugin to create custom progress bars
Avatar
3 years ago by froehlichA
An obsidian plugin for displaying an avatar image in front of your notes.
Dataview Publisher
2 years ago by UD
Output markdown from your Dataview queries and keep them up to date. You can also be able to publish them.
Paste Mode
5 years ago by Jacob Levernier
Obsidian Notes plugin for pasting text and blockquotes to the cursor's current level of indentation.
Recipe Grabber
3 years ago by seethroughdev
Enhanced Copy
2 years ago by Mara-Li
A obsidian plugin that allows to copy in markdown in reading view or canvas read-only view, creating profile and transform the text during copy.
Automatic Linker
a year ago by Kodai Nakamura
Markdown to Jira Converter
4 years ago by muckmuck
An obsidian.md plugin, which provides a markdown to jira markup converter
qmd as md
4 years ago by Daniel Borek
A plugin for Obsidian that enables editing and compiling `qmd` Quarto files.
Pretty BibTeX
4 years ago by Sandro Figo
A plugin for Obsidian that shows raw BibTeX bibliography entries in a prettier way. (https://obsidian.md)
Markdown Tags
2 years ago by John Smith III
Enhance your Markdown documents with custom tags. Use predefined or custom labels, customizable colors, and arrow indicators to visually track tasks and statuses.
Export To TeX
6 years ago by Zach Raines
export obsidian markdown files in a format that can be pasted into a TeX file
My Bible
2 years ago by GsLogimaker
Your own customization bible in your personal vault!
Insta TOC
2 years ago by Nick C.
Generate, update, and maintain a table of contents for your notes while typing in real time.
Obsidian asciimath
4 years ago by widcardw
Asciimath support for Obsidian (based on asciimath-parser)
Horizontal Blocks
8 months ago by iCodeAlchemy
Bring Notion-style layouts to Obsidian — with side-by-side, resizable markdown blocks that support full Obsidian syntax including images, embeds, and internal links.
Calctex
3 years ago by Mike
An Obsidian plugin for automatic calculation of LaTeX formulas.
No more flickering inline math
3 years ago by Ryota Ushio
No longer disturbed by flickering inline math in Obsidian.
Extended Markdown Syntax
a year ago by Kotaindah55
Extend your Markdown syntax using delimiters instead of HTML tags, such as underlining, superscript, subscript, highlighting, and spoiler.
Marjdown shortcuts
4 years ago by Jules Guesnon
🪨 Obsidian plugin that allows to write markdown from commands
Meal Plan
2 years ago by Tyler Mayoff
A meal plan & recipe manager plugin for Obsidian
Markdown Tree
3 years ago by carvah
Introducing a powerful plugin that revolutionizes directory tree creation. With its intuitive Markdown-inspired coding style, this plugin empowers users to effortlessly and swiftly construct intricate directory trees.
Table Checkbox Renderer
7 months ago by Daniel Aguerrevere
Interactive checkboxes for Markdown tables in Obsidian. Toggle checkboxes in Reading Mode and instantly update your Markdown file. Supports multiple checkboxes per cell and any table layout.
Dirtreeist
4 years ago by kasahala
Render a directory Structure Diagram from a markdown lists in codeblock.
Autocorrect Formatter
3 years ago by b-yp
A plugin running on Obsidian that utilizes autocorrect to format Markdown content.
MagicCalendar
3 years ago by Vaccarini Lorenzo
An obsidian plugin that exploit a natural language processing engine to find potential events and sync them with iCalendar
Quoth
4 years ago by Eric Rykwalder
mdx as md
5 years ago by Nikolay Kozhukharenko
Edit mdx files in Obsidian.md as if they were markdown
Immersive Translate
2 years ago by imfenghuang
Immersive Translate For Obsidian
Hard Breaks
4 years ago by Börge Kiss
↩ A plugin for Obsidian that adds functionality to force hard line breaks
Floccus Bookmarks to Markdown
3 years ago by mddevils
Confluence to Obsidian
3 years ago by K
import confluence space into obsidian
Yesterday
2 years ago by Dominik Mayer
Obsidian plugin providing Yesterday journaling support
Image2LaTEX
3 years ago by Hugo Persson
This is a plugin for obsidian that will read your latest copied image from clipboard and generate math latex from it
LaTeX Math
a year ago by Zarstensen
Integrated CAS (via. Sympy) plugin for Obsidian, with a LaTeX focused workflow.
Simple Citations
2 years ago by masaki39
Add & update simple literature notes from Zotero.
Quadro
2 years ago by Chris Grieser (aka pseudometa)
Obsidian Plugin for social-scientific Qualitative Data Analysis (QDA). An open alternative to MAXQDA and atlas.ti, using Markdown to store data and research codes.
LaTeX Algorithms
3 years ago by SamZhang02
A simple plugin for writing Algorithms and pseudocodes in Obsidian.md
Discord Message Formatter
3 years ago by Emile Durkheim
Obsidian.md plugin that lets you copy Discord conversations and perfectly formats them to Obsidian Markdown!
Blockquote Levels
4 years ago by Carlo Zottmann
A plugin for Obsidian (https://obsidian.md) that adds commands for increasing/decreasing the blockquote level of the current line or selection(s).
Console Markdown Plugin
3 years ago by Daniel Ellermann
An Obsidian plugin which renders console commands and their output.
Mochi Cards Exporter
5 years ago by kalbetre
Mochi Cards Exporter Plugin for Obsidian
File Include
3 years ago by Till Hoffmann
Awesome Flashcard
4 years ago by AwesomeDog
Handy Anki integration for Obsidian.
Advanced Copy
2 years ago by leschuster
An Obsidian plugin to copy Markdown and transform it into HTML, Anki, or any custom format. Create custom profiles with versatile templates tailored to your workflow.
PDF Folder to Markdowns
a year ago by CrisHood
Convert a folder of PDFs into a folder of Markdown files with embedded PDFs. This plugin is useful for users who want to migrate their PDF notes from different apps (e.g., Boox) or organize their reference materials inside Obsidian.
OzanShare Publish
5 years ago by Ozan Tellioglu
This plugin allows you to publish your markdown notes with a single click directly from your Obsidian vault.
SwiftLaTeX Render
2 years ago by gboyd068
Markdown to Slack Message
3 years ago by Woongshik Choi
LaTeX to unicode converter
3 years ago by fjdu
Convert LaTeX commands into unicode sequences
Latex Matrices
3 years ago by Daniele Susino
An obsidian plugin to create latex matrices.
Markdown Blogger
3 years ago by Alexa Fazio
Allows developers to push markdown notes to their local blog, portfolio, or static site. Works with Astro.js, Next.js, and any other framework configured to render markdown pages.
O2
3 years ago by haril song
Converts obsidian markdown syntax to other platforms.
Auto Front Matter
3 years ago by conorzhong
Prettier
2 years ago by GoodbyeNJN
Obsidian Handlebars Template Plugin
4 years ago by Sean Quinlan
This is a plugin for Obsidian adding support for the Handlebars template engine in Obsidian notes
Obsidian GoLinks
4 years ago by David Brownman (@xavdid)
Turn go/links into clickable elements in Obsidian
Wypst
2 years ago by 0xpapercut
High quality rendering of Typst in Obsidian, powered by wypst.
Filename Emoji Remover
4 years ago by Yüksel Tolun
A simple plugin for the note taking app Obsidian that will rename your files to remove emojis in their names.
Global Markdown Encryption
3 years ago by shlemiel
a plugin for encrypting obsidian markdowns in-memory, single password based.
Spoilers
2 years ago by Jacobtread
Spoiler blocks for Obsidian
Title As Link Text
a year ago by Lex Toumbourou
An Obsidian plugin to set the Link Text using the document title
Markdown Link Space Encoder
3 years ago by Ron Kosova
Obsidian plugin to automatically encode spaces to %20 in Markdown-style links
Latex Exporter
2 years ago by Matthew S. Scott
Slackify Note
3 years ago by Jeremy Overman
Markdown Timeline
2 years ago by Jiaheng Zhang
An Obsidian plugin to record the events in a Flashback timeline
Smart Export
3 months ago by Iván Sotillo
Plugin that follows wikilinks to a configurable depth, joining the notes into a single export.
Reason
2 years ago by Joshua Pham
Digest your Obsidian notes
PubScale
3 years ago by piriwata
An obsidian plugin for insert your note into a PlanetScale table
Postfix
3 years ago by Bhagya Nirmaan Silva (@bhagyas)
A postfix plugin for Obsidian
Markdown Image Caption
3 years ago by Hananoshika Yomaru
Generate image caption easily. Completely markdown-based.
Cooklang
2 years ago by Roger Veciana i Rovira
Attachments MD Indexer
a year ago by Ian Inkov
Converts Obsidian canvas files to markdown index files, making canvas content searchable and graph-viewable within Obsidian.
SlashComplete
7 months ago by Spiderpig86
Notion-style Markdown autocompletion for Obsidian.
Callout Copy Buttons
a year ago by Aly Thobani
An Obsidian plugin that adds copy buttons to callout blocks in your notes.
Pickly PageBlend
3 years ago by Dmitrii Mitrichev
The easiest way to share your Obsidian notes
Task list
2 years ago by Ted Marozzi
A simple obsidian plugin enabling better task management via lists.
Note Minimap
10 months ago by Yair Segel
Add a minimap to your Obsidian notes.
Math Indicator Changer
2 years ago by Ori Replication
MathLive in Editor Mode
2 years ago by MizarZh
MathLive input in editor mode.
Transfer LaTeX from GPT
2 years ago by Xixia
Highlight Helper
3 years ago by Chongmyung Park
Helper to collect highlight in Obsidian
Foodiary
2 years ago by vkostyanetsky
Food tracker plugin for Obsidian
LaTeX-OCR
2 years ago by Jack Barker
Simple Todo
2 years ago by elliotxx
A minimalist text-based todo manager (Text-Based GTD) for efficient task management in Obsidian.
Copy Section
2 years ago by skztr
Obsidian.md plugin adding a Copy button to the top of Headed sections
Strip Internal Links
2 years ago by Adi Ron
A simple Obsidian plugin to strip internal links from files
Archivist Importer
3 months ago by Archivist AI
Import selected vault files into Archivist campaigns.
Remove HTML Tag
2 years ago by ChenPengyuan
WeWrite
a year ago by Learner Chen
Obsidian plugin to render note as WeChat MP article.
WhatsApp export note
a year ago by JoaoEmanuell
Obsidian plugin to export notes for whatsapp
Plot Vectors and Graphs
2 years ago by Nicole Tan YiTong
Obsidian Plugin to generate graphs given the function.
MathType
a year ago by slateblua
Type math faster
Note Linker with Previewer
2 years ago by Nick Allison
Obsidian Plugin to find and Link notes
LaTeX Panel Helper
7 months ago by Luster
A powerful and convenient LaTeX symbol panel for Obsidian to enhance your mathematical and scientific note-taking efficiency.
Quarto Exporter
2 years ago by Andreas Varotsis
Export Obsidian notes to Quarto-compatible QMD files.
Limitless Lifelogs
a year ago by Maclean Dunkin
Sync your Limitless AI lifelog entries directly into Obsidian markdown files.
AI Chat as Markdown
2 years ago by Charl P. Botha
ii
2 years ago by Wilson
The main feature of this plugin is to quickly insert common Markdown code and HTML code, including Sup, Sub, Audio, Video, Iframe, Left-Center-Right Alignment, Variables, Footnotes, Callout, Anchor Points, HTML Comments and so on.
AI LaTeX Generator
2 years ago by Aayush Shah
An Obsidian plugin that generates latex code from natural language inputs.
Simple File Push
2 years ago by Kim Hudaya
Simple file push blog plugin
BibTeX Scholar
8 months ago by Qilong Liu
Make your literature review and writing contextual and frictionless—right inside your Obsidian vault!
Import GitHub Readme
2 years ago by Chasebank87
logos-refs
a year ago by Joey Kilgore
Easily take refs from Logos into Obsidian
Markdown Calendar Generator
a year ago by Zach Russell
An intentionally simple obsidian markdown table calendar generator
Asciidoc Reader
2 years ago by voidgrown
Obsidian plugin for reading AsciiDoc files
Recursive Copy
2 years ago by datawitch
LiteCite
10 months ago by ras0q
A lightweight Obsidian plugin that creates citation notes from a BibTeX / BibLaTeX file
LaTeX autocomplete
7 months ago by Yanis Gerst
Citation Callouts
a year ago by Michael Marvive
Obsidian Plugin that formats a quote with a citation in a custom callout
Chat clips
a year ago by sleepingraven
Record chat in ordinary markdown list.
Student Repo
a year ago by Feirong.zfr
学生知识库助手(Student Repository Helper)是一个面向学生或学生家长的Obsidian 插件,这款插件旨在解决学生在学习阶段面临的资料管理难题,将学习过程中产生的各类重要资料,如试卷、笔记、关键文档、绘画手工作品等,进行系统性的数字化整合与管理,并利用 AI 助手定期进行学习分析总结。随着时间的推移,它将助力你逐步搭建起一座专属你自己的知识宝库,这座宝库将伴随你一生,成为你知识成长与积累的见证。
Keyboard Formatter
10 months ago by Lauloque
Formats keyboard text (kbd) in your Obsidian notes quickly and consistently.
Interactive Code Blocks
2 years ago by Student Assistenten Team Deeltaken
Auto Math
3 months ago by Vladislav Sorokin
Auto-expands LaTeX snippets. External rules with live reload, Custom Rules Editor, and default math pack.
Paste Quote
a year ago by Jacob Williams
Helps with formatting and citing quotes when pasting into Obsidian.
Cooksync
a year ago by Cooksync
This is the official Obsidian plugin for Cooksync, maintained by the Cooksync team. It enables automatic import of recipe data from your Cooksync account. Note that this plugin requires a Cooksync account - a paid service that makes it easy to collect recipes from almost any recipe website.
GH Links Shortener
8 months ago by David Barnett
Obsidian plugin to set shortened link text for pasted GitHub URLs
Bibtex Entry View
a year ago by Kyoungdeuk
Load the bibtex entry of a given bibkey from a given bib file and show the entry in the code block of bibkey.
Hexo Toolkit
2 years ago by Xiangru
An Obsidian plugin for maintaining Hexo posts.
Quick Matrix
7 months ago by Charlie Flowe
Plugin for Obsidian.md that allows for faster interactions with matrices in LaTeX
Arweave Uploader
2 years ago by makesimple