Skip to content

A collection of examples for the structural dynamics course

License

Notifications You must be signed in to change notification settings

miguelmaso/dynamics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dynamics

A collection of examples for the structural dynamics course. The contents of this repo are classified into several parts:

  • A static LaTeX document with academic examples
  • An interactive extension of the examples with Jupyter notebooks
  • A Python pacage for processing data recorded at the laboratory.

LaTeX build

The document is to be compiled using pdflatex and biber, other compilers have not been tested. Run the following commands to compile the document:

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
]