Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 1.18 KB

File metadata and controls

30 lines (19 loc) · 1.18 KB

About

Contains informatio on LaTeX. For exampole, how to compile tex files with text editors used by me.

Overleaf

TexStudio: Command for compiling tex file

Options -> Configure TexStudio -> Commands -> PdfLatex

pdflatex.exe -synctex=1 -interaction=nonstopmode %.tex|makeglossaries %|bibtex %|pdflatex.exe -synctex=1 -interaction=nonstopmode %.tex|pdflatex.exe -synctex=1 -interaction=nonstopmode %.tex|rm %.aux %.bbl %.blg %.dvi %.log %.out %.toc %.synctex.gz

Config for TexStudio here texstudio.txsprofile.

TexMaker: Command for the compiling tex file

pdflatex -synctex=1 -interaction=nonstopmode %.tex|bibtex %|pdflatex -synctex=1 -interaction=nonstopmode %.tex|pdflatex -synctex=1 -interaction=nonstopmode %.tex|pdflatex -synctex=1 -interaction=nonstopmode %.tex|"C:/Program Files (x86)/Adobe/Reader 10.0/Reader/AcroRd32.exe" %.pdf|rm %.aux %.bbl %.blg %.dvi %.log %.out %.toc %.synctex.gz

LaTeX Hints

  • Tables
    • Use h option for better placement
    • Create table in a separate file and then use \input{file.tex}