Skip to content

Commit

Permalink
Fix LaTeX warnings (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
pitmonticone authored Apr 30, 2024
1 parent 3f7103b commit 85814c1
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 24 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,9 @@
*.fdb_latexmk
*.fls
*.log
*.synctex.gz
*.synctex.gz
# Python virtual environment
/.venv/
# Lean blueprint
/blueprint/lean_decls
/blueprint/src/web.bbl
27 changes: 13 additions & 14 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
{
"files.exclude": {
"**/.git": true,
".devcontainer": true,
".docker": true,
"**/.DS_Store": true,
"**/*.olean": true,
"**/.DS_yml": true,
"**/.git": true,
"**/.gitpod.yml": true,
"**/.vscode": true,
".docker": true,
"build": true,
"html": true,
"lake-packages": true,
".gitignore": true,
"lake-manifest.json": true,
"lakefile.lean": true,
"lean-toolchain": true,
"mathematics_in_lean.pdf": true,
"LICENSE":true,
".devcontainer":true,
"lean-tactics.tex":true
"**/*.olean": true,
"build": true,
"html": true,
"lake-manifest.json": true,
"lake-packages": true,
"lakefile.lean": true,
"lean-tactics.tex": true,
"lean-toolchain": true,
"LICENSE": true,
"mathematics_in_lean.pdf": true
},
"editor.minimap.enabled": false,
"editor.acceptSuggestionOnEnter": "off",
Expand Down
5 changes: 1 addition & 4 deletions blueprint/src/chapter/plancherel.tex
Original file line number Diff line number Diff line change
Expand Up @@ -296,21 +296,18 @@ \section{\texorpdfstring{Plancherel's Theorem and the Fourier Transform on $L^2$
\end{corollary}
\begin{proof}
% \leanok
All of these follow immediately from the definition and the oberservation, that all operations (norms, sums, conjugation, $\ldots$) are continuous.
All of these follow immediately from the definition and the observation, that all operations (norms, sums, conjugation, $\ldots$) are continuous.
For example, let $f\in L^2(V,E)$ and take an approximating sequence $(f_n)_n$ as before. Then
$$\|\widehat f\|_2=\|\lim_{n\to\infty}\widehat f_n\|_2=\|\lim_{n\to\infty}\|\widehat f_n\|_2=\lim_{n\to\infty}\|f_n\|_2
=\|\lim_{n\to\infty}f_n\|_2=\|f\|_2.$$
\end{proof}

\begin{corollary}
\label{thm:fourier-is-l2-linear}
\uses{thm:fourier2-properties} % the (list of) LaTeX labels of the lemmas that are used for this result
\label{thm:fourier-is-l2-linear}
\uses{thm:fourier2-properties} % the (list of) LaTeX labels of the lemmas that are used for this result
\lean{MeasureTheory.fourierIntegralL2} % the full Lean name this corresponds to (can be a comma-separated list)
\leanok % the *statement* of the lemma is formalized
The Fourier transform induces a continuous linear map $L^2(V,E) \to L^2(V,E)$.
The Fourier transform induces a continuous linear map $L^2(V,E) \to L^2(V,E)$.
\end{corollary}
\begin{proof}
% \uses{} % Put any results used in the proof but not in the statement here
Expand Down
10 changes: 5 additions & 5 deletions blueprint/src/print.tex
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
\usepackage{mathtools}
\usepackage[warnings-off={mathtools-colon,mathtools-overbracket}]{unicode-math}
\usepackage{fontspec}
\setmathfont{Latin Modern Math}
\setmathfont[range=\varnothing]{Asana-Math.otf}
\setmathfont[range=\pitchfork]{Asana-Math.otf}
\setmathfont[range=\intprod]{Asana-Math.otf}
\setmathfont[range=\int]{Latin Modern Math}
% \setmathfont{Latin Modern Math}
% \setmathfont[range=\varnothing]{Asana-Math.otf}
% \setmathfont[range=\pitchfork]{Asana-Math.otf}
% \setmathfont[range=\intprod]{Asana-Math.otf}
% \setmathfont[range=\int]{Latin Modern Math}

\usepackage[nameinlink, capitalize]{cleveref}

Expand Down

0 comments on commit 85814c1

Please sign in to comment.