Document Classes ⇒ listofsymbols
listofsymbols
I want to add the symbol for yaw rate, which is \dot{\psi}.
When i add the line,
\newsym[Gierrate]{psiPunkt}{\dot{\psi}}
i get an "undefined control sequence" error.
Does anybody know how to fix this problem?
Best regards, Thomas
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
listofsymbols
welcome to the board!
All \newsym commands have to be between \opensymdef and \closesymdef:
Code: Select all
\opensymdef
\newsym[Gierrate]{psiPunkt}{\dot{\psi}}
\closesymdef
Re: listofsymbols
that is not the problem, i already had the begining and end statement.
I just wrote the single line. So I still have this problem.
Best regards
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
listofsymbols
that line should not cause the error. This example is compilable and works for me:
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage{listofsymbols}
\opensymdef
\newsym[Gierrate]{psiPunkt}{\dot{\psi}}
\closesymdef
\begin{document}
Test: \psiPunkt
\end{document}
Perhaps provide a minimal example (like I did above) that produces this error.
Stefan
listofsymbols
Please try:
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage{listofsymbols}
\usepackage{amsmath}
\opensymdef
\newsym[Gierrate]{psiPunkt}{\dot{\psi}}
\closesymdef
\begin{document}
Test: \psiPunkt
\end{document}
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
listofsymbols
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage{listofsymbols}
\newcommand*\mydot{}
\let\mydot\dot
\usepackage{amsmath}
\opensymdef
\newsym[Gierrate]{psiPunkt}{\mydot{\psi}}
\closesymdef
\begin{document}
Test: \psiPunkt
\end{document}
Code: Select all
\let\dot\mydot
Stefan