Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Documentation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Rotare
Documentation
Commits
e43e6e04
Verified
Commit
e43e6e04
authored
2 years ago
by
Thomas Lambert
Browse files
Options
Downloads
Patches
Plain Diff
feat(nomencl): add nomenclature
parent
6cd3afc3
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#8775
passed
2 years ago
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitignore
+5
-0
5 additions, 0 deletions
.gitignore
latexmkrc
+7
-1
7 additions, 1 deletion
latexmkrc
preamble.tex
+1
-0
1 addition, 0 deletions
preamble.tex
rotare-doc.tex
+4
-0
4 additions, 0 deletions
rotare-doc.tex
style/symbols.sty
+12
-0
12 additions, 0 deletions
style/symbols.sty
with
29 additions
and
1 deletion
.gitignore
+
5
−
0
View file @
e43e6e04
...
...
@@ -49,6 +49,11 @@
### List of fixmes (from fixme package)
*.lox
### Nomenclature
*.nlg
*.nlo
*.nls
### Ignore compiled pdfs
*.pdf
!figures/*/*.pdf
...
...
This diff is collapsed.
Click to expand it.
latexmkrc
+
7
−
1
View file @
e43e6e04
...
...
@@ -17,4 +17,10 @@ $pdf_mode = 4; # 1: use pdflatex, 4: use lualatex, 5 use xelatex
$bibtex_use = 2;
# Extra extensions to clean
$clean_ext = 'synctex.gz synctex.gz(busy) run.xml tex.bak bbl bcf fdb_latexmk run tdo %R-blx.bib lox'
$clean_ext = 'synctex.gz synctex.gz(busy) run.xml tex.bak bbl bcf fdb_latexmk run tdo %R-blx.bib lox nlg nlo nls';
# Make nomenclature
add_cus_dep("nlo", "nls", 0, "nlo2nls");
sub nlo2nls {
system("makeindex $_[0].nlo -s nomencl.ist -o $_[0].nls -t $_[0].nlg");
}
This diff is collapsed.
Click to expand it.
preamble.tex
+
1
−
0
View file @
e43e6e04
...
...
@@ -88,6 +88,7 @@
\renewmenumacro
{
\directory
}{
pathswithfolder
}
% default: paths
\usepackage
[scale=2]
{
ccicons
}
% Icons for CC licenses
\usepackage
[nolinks]
{
qrcode
}
% QR codes
\usepackage
{
siunitx
}
% SI units
% For inkscape figures
\usepackage
{
xifthen
}
...
...
This diff is collapsed.
Click to expand it.
rotare-doc.tex
+
4
−
0
View file @
e43e6e04
...
...
@@ -63,6 +63,10 @@ draft, % toggle if draft version
\tableofcontents
% display table of contents
\cleardoublepage
% Nomenclature
\printnomenclature
% Body
% ***********************************************
\pagenumbering
{
arabic
}
% arabic page numbering
...
...
This diff is collapsed.
Click to expand it.
style/symbols.sty
+
12
−
0
View file @
e43e6e04
...
...
@@ -3,12 +3,21 @@
% This ensures coherence between all parts of the document and simplifies
% maintenance or changes in the nomenclature.
%
% This package also generates directly the nomenclature
%
% Author: Thomas Lambert <t.lambert@uliege.be>
% ULiege - Aeroelasticity and Experimental Aerodynamics
% CC0 License
% https://gitlab.uliege.be/thlamb/rotare-doc
% ------------------------------------------------------------------------------
% Generate nomenclature
\RequirePackage
[stdsubgroups]
{
nomencl
}
\makenomenclature
\newcommand
{
\nomunit
}
[1]
{
%
\renewcommand
{
\nomentryend
}{
\hspace*
{
\fill
}
\si
{
#1
}}
%
}
% TODO better spacing/title style
% --- Velocities ---------------------------------------------------------------
...
...
@@ -42,6 +51,9 @@
% --- Others -------------------------------------------------------------------
\newcommand
{
\area
}{
\ensuremath
{
A
}}
% (Rotor) Area
\nomenclature
[A]
{
\area
}{
Area
\nomunit
{
\m
^
2
}}
\newcommand
{
\radius
}{
\ensuremath
{
R
}}
% Rotor radius
\newcommand
{
\rRad
}{
\ensuremath
{
r
}}
% Nondimensional radial position along the blade
\newcommand
{
\aRad
}{
\ensuremath
{
y
}}
% Radial distance along the blade
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment