Skip to main content

Installing and using Emacs, AUCTeX, RefTeX, preview-latex

Typing Latex in Emacs is easier with the help of AUCTeX, RefTeX and preview-latex
  1. Installation of AUCTex, RefTex and preview-latex
  2. Using
  3. Most commonly used command:
    1. C-c ( ; it is used to label an object.
    2. C-c ) ; it is used to reference an object.
    3. C-c [ RET keyword; it is used to find the reference \cite
    4. C-c = to explore table of content
    5. C-c C-p C-d; it is used to turn on preview-latex
    6. C-c C-p C-c C-d; it is used to turn off preview-latex

Comments

Popular posts from this blog

Web App Scaling with Flask Blueprint and Namespaces

A real-world Flask-RESTX-based API  may have multiple namespaces. The best practice for scaling a web application is to use a blueprint along with multiple namespace. The namespace is used to group a set of CRUD operations for a specific resource.  Blueprint can be used to combine (mixing) multiple namespaces. Here’s an example directory structure: project\ ├── app.py # Application file ├── apis #    ├── v20 # API directory    │   ├── __init__.py    │   ├── specs.py # API namespaces and REST methods    │   ├── steps.py # API namespaces and REST methods    └── v20bp.py # API blueprint file Here is an example app.py. Using a blue print allow you to mount your API on any url prefix. from flask import Flask from apis.v20bp import blueprint as api app = ...