AbnerTeng / LaTeX-templates

Some useful and neat LaTeX templates for homework, paper and curriculum vitae.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LaTeX-templates

Some useful and neat LaTeX templates for math & code homeworks, notes and cover letter.

Auto-generated .tex files

Updated on 2023-11-23

In terminal, run:

chmod +x ./latex_tmp_gen.sh
./latex_tmp_gen.sh

Then, the plain .tex files with input preambles will be generated in the directory you specified.

Pre-defined preambles

Input preambles:

\input{preamble/code_preamble.tex}
\input{preamble/general_preamble.tex}
  • preamble/code_preamble.tex
    • Code embedding settings for Python and C++
  • preamble/general_preamble.tex
    • General settings like math, figure, table, geometry, TikZ, etc...

Beamer

Beamer is a $\LaTeX$ document class for creating slides for presentations.

To use the Beamer template, you can simply copy the beamer/beamer.tex file to your project directory. Also, the pre-defined preamble beamer_preamble.tex is included in the preamble directory.

Note that this template is specially designed for students in National Chengchi University (NCCU).

Useful Pre-defined commands

  • Python code block:

    \begin{python}
    class MyClass:
        def __init__(self):
            self.params = params
    \end{python}
    
  • Python inline code

    \pythoninline{torch.tensor([1, 2, 3)}
    
  • C++ code block

    \begin{cpp}
    class MyClass {
    public:
        MyClass() {}
    };
    \end{cpp}
    
  • C++ inline code

    \cppinline{std::vector<int> v;}
    
  • \dydx for $\dfrac{dy}{dx}$

  • \imp for $\Rightarrow$

  • \intx for $\int \ dx$

About

Some useful and neat LaTeX templates for homework, paper and curriculum vitae.


Languages

Language:TeX 93.6%Language:Shell 6.4%