midi files and logic
This commit is contained in:
parent
a1e71100a2
commit
8c71b295d9
65
.gitignore
vendored
Normal file
65
.gitignore
vendored
Normal file
@ -0,0 +1,65 @@
|
||||
# ---- LaTeX build files ----
|
||||
*.aux
|
||||
*.bbl
|
||||
*.bcf
|
||||
*.blg
|
||||
*.fdb_latexmk
|
||||
*.fls
|
||||
*.ilg
|
||||
*.ind
|
||||
*.lof
|
||||
*.log
|
||||
*.lot
|
||||
*.out
|
||||
*.run.xml
|
||||
*.toc
|
||||
*.synctex.gz
|
||||
*.synctex.gz(busy)
|
||||
*.nav
|
||||
*.snm
|
||||
*.vrb
|
||||
|
||||
# ---- latexmk ----
|
||||
*.latexmk
|
||||
|
||||
# ---- PDF intermediate ----
|
||||
*.dvi
|
||||
*.ps
|
||||
|
||||
# ---- MusiXTeX ----
|
||||
*.mx1
|
||||
*.mx2
|
||||
*.mx3
|
||||
*.mx4
|
||||
*.mx5
|
||||
*.mx6
|
||||
*.mx7
|
||||
*.mx8
|
||||
*.mx9
|
||||
*.mxl
|
||||
*.musixflx
|
||||
|
||||
# ---- Temporary editor files ----
|
||||
*~
|
||||
*.swp
|
||||
*.swo
|
||||
.DS_Store
|
||||
|
||||
# ---- auto backup files ----
|
||||
*.bak
|
||||
*.backup
|
||||
|
||||
# ---- gnuplot outputs ----
|
||||
*.gnuplot
|
||||
*.gp
|
||||
*.table
|
||||
|
||||
# ---- Python helper cache ----
|
||||
__pycache__/
|
||||
*.pyc
|
||||
|
||||
# ---- Build directories ----
|
||||
build/
|
||||
out/
|
||||
tmp/
|
||||
|
||||
BIN
lyrics/la_bamba_lyrics.pdf
Normal file
BIN
lyrics/la_bamba_lyrics.pdf
Normal file
Binary file not shown.
36
lyrics/tabs_example.tex
Normal file
36
lyrics/tabs_example.tex
Normal file
@ -0,0 +1,36 @@
|
||||
\documentclass{article}
|
||||
\usepackage{musixtex}
|
||||
\usepackage{musixtab}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\begin{music}
|
||||
\instrumentnumber{1}
|
||||
\setstaffs1{1}
|
||||
\TAB1 % enable tablature
|
||||
\setname1{Guitar}
|
||||
\generalmeter{\meterfrac44}
|
||||
|
||||
\startextract
|
||||
|
||||
% strings numbered 1 (high E) to 6 (low E)
|
||||
% \ztab{string}{fret}
|
||||
|
||||
\Notes
|
||||
\ztab{6}{3} % G on low E string
|
||||
\ztab{5}{2} % B on A string
|
||||
\ztab{4}{0} % D open
|
||||
\ztab{3}{0} % G open
|
||||
\en \bar
|
||||
|
||||
\Notes
|
||||
\ztab{2}{1}
|
||||
\ztab{1}{0}
|
||||
\ztab{2}{1}
|
||||
\ztab{3}{0}
|
||||
\en \doublebar
|
||||
|
||||
\endextract
|
||||
\end{music}
|
||||
|
||||
\end{document}
|
||||
BIN
lyrics/untitled-1.pdf
Normal file
BIN
lyrics/untitled-1.pdf
Normal file
Binary file not shown.
123
lyrics/untitled-1.tex
Normal file
123
lyrics/untitled-1.tex
Normal file
@ -0,0 +1,123 @@
|
||||
|
||||
\documentclass[a4paper,14pt]{article}
|
||||
|
||||
\usepackage[T1]{fontenc} % good PDF font encoding
|
||||
\usepackage[utf8]{inputenc} % pdflatex UTF-8 support (OK with TL2023)
|
||||
\usepackage[margin=1.8cm]{geometry}
|
||||
\usepackage{multicol}
|
||||
\usepackage{parskip}
|
||||
|
||||
\setlength{\parindent}{0pt}
|
||||
|
||||
% Chords above lyrics (simple + robust)
|
||||
\newcommand{\ch}[1]{\textsuperscript{\textbf{#1}}}
|
||||
|
||||
% Title + section helpers (names chosen to avoid clashes)
|
||||
\newcommand{\SongTitle}[1]{%
|
||||
\begin{center}
|
||||
\LARGE\bfseries #1
|
||||
\end{center}
|
||||
\vspace{0.4em}
|
||||
}
|
||||
|
||||
\newcommand{\Verse}[1]{\textbf{Verse #1}\par}
|
||||
\newcommand{\Chorus}[1][]{\textbf{Chorus\if\relax\detokenize{#1}\relax\else\ (#1)\fi}\par}
|
||||
\newcommand{\Bridge}[1][]{\textbf{Bridge\if\relax\detokenize{#1}\relax\else\ (#1)\fi}\par}
|
||||
|
||||
|
||||
\begin{document}
|
||||
|
||||
{\em Letra de "La Bamba"}
|
||||
|
||||
\vspace*{2cm}
|
||||
\SongTitle{La Bamba --- Ritchie Valens}
|
||||
\vspace*{2cm}
|
||||
\begin{multicols}{2}
|
||||
\Large
|
||||
|
||||
%\vspace*{2cm}
|
||||
|
||||
\Chorus[Coro]
|
||||
|
||||
Para bailar La Bamba
|
||||
|
||||
Para bailar La Bamba
|
||||
|
||||
Se necesita una poca de gracia
|
||||
|
||||
Una poca de gracia
|
||||
|
||||
Pa' mí, pa' ti, arriba, y arriba
|
||||
|
||||
Y arriba, y arriba
|
||||
|
||||
Por ti seré, por ti seré, por ti seré
|
||||
|
||||
|
||||
\Verse{1}
|
||||
[Verso]
|
||||
|
||||
Yo no soy marinero
|
||||
|
||||
Yo no soy marinero, soy capitán
|
||||
|
||||
Soy capitán, soy capitán
|
||||
|
||||
Bamba, bamba
|
||||
|
||||
Bamba, bamba
|
||||
|
||||
Bamba, bamba, bamba
|
||||
|
||||
\Chorus[Coro]
|
||||
|
||||
Para bailar La Bamba
|
||||
|
||||
Para bailar La Bamba
|
||||
|
||||
Se necesita una poca de gracia
|
||||
|
||||
Una poca de gracia
|
||||
|
||||
Pa' mí, pa' ti, arriba, y arriba
|
||||
|
||||
|
||||
\Bridge
|
||||
[Puente]
|
||||
|
||||
Rrr, jaja
|
||||
|
||||
\Chorus[Coro]
|
||||
|
||||
Para bailar La Bamba
|
||||
|
||||
Para bailar La Bamba
|
||||
|
||||
Se necesita una poca de gracia
|
||||
|
||||
Una poca de gracia
|
||||
|
||||
Pa' mí, pa' ti, arriba, y arriba
|
||||
|
||||
Y arriba, y arriba
|
||||
|
||||
Por ti seré, por ti seré, por ti seré
|
||||
|
||||
[Outro]
|
||||
|
||||
Bamba, bamba
|
||||
|
||||
Bamba, bamba
|
||||
|
||||
Bamba, bamba
|
||||
|
||||
|
||||
|
||||
\end{multicols}
|
||||
|
||||
|
||||
$$ Pierrie LaPalce \; \int_0^\infty f(t) e^{-st} $$
|
||||
$$ Gradient \; \nabla \mathbf{F} $$
|
||||
$$ CurlyWhirly \;\nabla \times \mathbf{F} $$
|
||||
$$ DiververgeFromThe Normies \; \nabla \cdot \mathbf{F} $$
|
||||
\end{document}
|
||||
BIN
lyrics/untitled-2.pdf
Normal file
BIN
lyrics/untitled-2.pdf
Normal file
Binary file not shown.
34
lyrics/untitled-2.tex
Normal file
34
lyrics/untitled-2.tex
Normal file
@ -0,0 +1,34 @@
|
||||
\documentclass{article}
|
||||
\usepackage{musixtex}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\begin{music}
|
||||
\parindent10mm
|
||||
\instrumentnumber{1}
|
||||
\setname1{Piano}
|
||||
\setstaffs1{1}
|
||||
\generalmeter{\meterfrac44}
|
||||
\startextract
|
||||
|
||||
% \doublebar
|
||||
|
||||
% bar 1
|
||||
\Notes \qu c \qu d \qu e \qu f \en \leftrepeat
|
||||
|
||||
|
||||
% bar 2
|
||||
\Notes \qu g \qu a \qu b \qu c' \en \bar
|
||||
|
||||
|
||||
% bar 3
|
||||
\Notes \qu g \qu c, \qu b \qu c, \en \bar \rightrepeat
|
||||
|
||||
|
||||
|
||||
\Notes \qu g \qu c', \qu b' \qu c' \en \endbar
|
||||
|
||||
\endextract
|
||||
\end{music}
|
||||
|
||||
\end{document}
|
||||
BIN
midi_band_logic/A_Phrygian_FreakSun_Loop.mid
Normal file
BIN
midi_band_logic/A_Phrygian_FreakSun_Loop.mid
Normal file
Binary file not shown.
BIN
midi_band_logic/BEATLES_THE_-_Here_comes_the_sun.mid
Normal file
BIN
midi_band_logic/BEATLES_THE_-_Here_comes_the_sun.mid
Normal file
Binary file not shown.
BIN
midi_band_logic/Bob Dylan - Blowin' in the Wind.mid
Normal file
BIN
midi_band_logic/Bob Dylan - Blowin' in the Wind.mid
Normal file
Binary file not shown.
BIN
midi_band_logic/Sixpence_None_The_Richer_-_There_She_Goes.mid
Normal file
BIN
midi_band_logic/Sixpence_None_The_Richer_-_There_She_Goes.mid
Normal file
Binary file not shown.
BIN
midi_band_logic/The Entertainer.mid
Normal file
BIN
midi_band_logic/The Entertainer.mid
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 712 KiB |
3183
midi_band_logic/get_yr_freak_on.band/projectData
Normal file
3183
midi_band_logic/get_yr_freak_on.band/projectData
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user