-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
joss-paper: Missing operators #335
Comments
Related to openjournals/joss-reviews#2520 |
@PetrKryslUCSD The operators are in the paper.md source file, but they are not visualized correctly. In standard .tex documents to be compiled with pdflatex, I am able to display these operators by including \usepackage[utf8x]{inputenc}
\usepackage{textgreek} in the preamble. However, I do not know how to achieve this in this for the JOSS paper. Dear editor @Kevin-Mattheus-Moerman, could you provide any hint on how to fix this? Could you please forward the issue to the person in charge of the paper compilation system? |
@fverdugo could you paste the code generating the desired expression here? Also could you share a screenshot of the expression being rendered correctly (e.g. using a different Latex editor)? I'll have out development team look at it then. |
@fverdugo ☝️ |
This is a MWE with some code snippets containing the Greek operators. Consider a file \documentclass{article}
\usepackage[utf8x]{inputenc}
\usepackage{textgreek}
\begin{document}
\begin{verbatim}
f(x) = -Δ(u)(x); g(x) = u(x)
a(u,v) = ∇(u)⋅∇(v); l(v) = v*f
trian_Ω = Triangulation(model)
\end{verbatim}
\end{document} Compile it with pdflatex pdflatex main.tex Result: As I have said, the trick is to include these lines in the preamble: \usepackage[utf8x]{inputenc}
\usepackage{textgreek} |
@Kevin-Mattheus-Moerman I have added the code sniped as a figure. Now the code symbols are visualized correctly. You can close the issue, please. |
Resolved |
The weak form definition is incomplete: the gradient operators and the dot product operator are missing. Perhaps the font did not include these symbols?
The text was updated successfully, but these errors were encountered: