All Projects → kindermannhubert → VsTeXCommentsExtension

kindermannhubert / VsTeXCommentsExtension

Licence: MIT license
TeX comments rendering inside Visual Studio.

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to VsTeXCommentsExtension

Ecsharp
Home of LoycCore, the LES language of Loyc trees, the Enhanced C# parser, the LeMP macro preprocessor, and the LLLPG parser generator.
Stars: ✭ 141 (+193.75%)
Mutual labels:  visual-studio, math
UnityAssemblies
Simple, forward-compatible references to ANY Unity DLL on ANY platform.
Stars: ✭ 65 (+35.42%)
Mutual labels:  visual-studio
kontent-boilerplate-net
Kontent.ai Boilerplate for development of ASP.NET Core MVC applications.
Stars: ✭ 29 (-39.58%)
Mutual labels:  visual-studio
VSTextMacros
An extension for Visual Studio 2012-2022 that brings back support for macros in text/code editors
Stars: ✭ 63 (+31.25%)
Mutual labels:  visual-studio
speedy-math
An application which allows user (small kids) to practice basic Mathematics operations
Stars: ✭ 28 (-41.67%)
Mutual labels:  math
commons-statistics
Statistics
Stars: ✭ 35 (-27.08%)
Mutual labels:  math
JetScreenRecorder
A simple screen capture video recorder using the AfrogeNet ffmpeg DLL and windows forms with a flat ui.
Stars: ✭ 70 (+45.83%)
Mutual labels:  visual-studio
Upsurge
Multi-dimensional Swift math
Stars: ✭ 180 (+275%)
Mutual labels:  math
SCNMathExtensions
Math extensions for SCNVector3, SCNQuaternion, SCNMatrix4
Stars: ✭ 32 (-33.33%)
Mutual labels:  math
noteworthy
Markdown editor with bidirectional links and excellent math support, powered by ProseMirror. (In Development!)
Stars: ✭ 178 (+270.83%)
Mutual labels:  math
1 First Steps
Setup Unity and Visual Studio on Mac and PC. Use Unity's editor to position, rotate and scale game objects. Understand prefabs. Write very basic code, and use Unity's Console. http://gdev.tv/cu2github (REF: FS_CU2)
Stars: ✭ 23 (-52.08%)
Mutual labels:  visual-studio
d rive
c++17 compile time math(derivation/integration)
Stars: ✭ 16 (-66.67%)
Mutual labels:  math
visual-studio-community-vagrant
Vagrant Environment for Visual Studio Community
Stars: ✭ 28 (-41.67%)
Mutual labels:  visual-studio
mml-book-chinese
mml-book-chinese《Mathematics For Machine Learning》机器学习中的数学 中文版
Stars: ✭ 113 (+135.42%)
Mutual labels:  math
langtons-ant
Langton’s Ant macOS screen saver written in Swift
Stars: ✭ 12 (-75%)
Mutual labels:  math
Math
考研数学,数学一,包括高等数学、线性代数、概率统计
Stars: ✭ 300 (+525%)
Mutual labels:  math
topologic
Visualiser for basic geometric primitives and fractals in arbitrary-dimensional spaces
Stars: ✭ 39 (-18.75%)
Mutual labels:  math
manim
A community-maintained Python framework for creating mathematical animations.
Stars: ✭ 12,657 (+26268.75%)
Mutual labels:  math
assimp-Cpp-OpenGL-skeletal-animation
assimp C++ OpenGL skeletal animation visual studio 2015 project
Stars: ✭ 45 (-6.25%)
Mutual labels:  visual-studio
alokmenghrajani.github.com
Alok Menghrajani's Blog
Stars: ✭ 64 (+33.33%)
Mutual labels:  math

VsTeXCommentsExtension

Intra-text adornment extension to the Visual Studio Editor for rendering TeX math comments inside editor.

Supports C#, F#, C, C++, VB.NET, Python, R, D and Fortran.

Extension is transforming all continuous code blocks where all lines starts with single line comment syntax (can be preceeded by white spaces) which for example in C# is '//' and the first line starts with '//tex:' prefix ('//' part is language dependent) to rendered image where math is rendered by MathJax. Math in this comments has to be surrounded by $ (for inline math) or $$ signs. Syntax of math is LaTex.

Examples:

  • C#, F#, C, C++, D:
  //tex:
  //Formula 1: $$(a+b)^2 = a^2 + 2ab + b^2$$
  //Formula 2: $$a^2-b^2 = (a+b)(a-b)$$
  • Python, R:
  #tex:
  #Formula 1: $$(a+b)^2 = a^2 + 2ab + b^2$$
  #Formula 2: $$a^2-b^2 = (a+b)(a-b)$$
  • VB.NET:
  'tex:
  'Formula 1: $$(a+b)^2 = a^2 + 2ab + b^2$$
  'Formula 2: $$a^2-b^2 = (a+b)(a-b)$$
  • Fortran:
  !tex:
  !Formula 1: $$(a+b)^2 = a^2 + 2ab + b^2$$
  !Formula 2: $$a^2-b^2 = (a+b)(a-b)$$

Example of C# code:

alt tag

Source code for screenshot above looks like this: alt tag

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].