miguelmaso / dynamics

A collection of examples for the structural dynamics course

Home Page:https://miguelmaso.github.io/dynamics/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dynamics

A collection of examples for the structural dynamics course. The examples are classified in two parts:

LaTeX build

The document has been comiled using pdflatex and biber, other compilers have not been tested. To compile the document, run the following commands:

pdflatex problems
biber    problems
pdflatex problems
pdflatex problems

VS Code configuration

If you are using VS Code with a LaTeX extension, make sure the following options are available on the configuration (ctrl+,):

"latex-workshop.latex.tools": [
  {
    "name": "pdflatex",
    "command": "pdflatex",
    "args": [
      "-synctex=1",
      "-interaction=nonstopmode",
      "-file-line-error",
      "%DOC%"
    ],
    "env": {}
  },
  {
    "name": "biber",
    "command": "biber",
    "args": [
      "%DOCFILE%"
    ],
    "env": {}
  },
  // other compilation tools
]

and

"latex-workshop.latex.recipes": [
  {
    "name": "pdflatex -> biber -> pdflatex * 2",
    "tools": [
      "pdflatex",
      "biber",
      "pdflatex",
      "pdflatex"
    ]
  },
  // other user recipes
]

About

A collection of examples for the structural dynamics course

https://miguelmaso.github.io/dynamics/

License:MIT License


Languages

Language:Jupyter Notebook 79.7%Language:TeX 17.5%Language:Python 2.8%