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 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
]