使用 MusiXTex 排版和弦進行

使用 MusiXTex 排版和弦進行

我熟悉 LaTeX 的數學排版。

我是第一次開始使用 MusiXTex。我遇到了一些基本問題。

我的目標是使用該工具轉錄古典吉他音樂。這件作品是“La Promessa (Elena)” - 盧西亞諾·皮佐蘭特 (Luciano Pizzolante) 的音樂。它使用開放式調諧 FACFCF。我假設這意味著 F 大調,降一級。

我正在使用正在運行的 MacBook ProTeXShop 版本 5.32關於索諾瑪 14.4.1。

我想先列出 F 大調音階以及與之相關的和弦。

.tex文件如下所示:

\documentclass[a4paper]{article}

\usepackage{musixtex}
\usepackage{hyperref}

\begin{document}

\href{http://www.latex-tutorial.com}{LaTeX-Tutorial}.

Chris Lewis asked me to transcribe a piece called \href{https://www.youtube.com/watch?v=sLSPBJJ1o2s}{"La Promessa (Elena)"} - music by Luciano Pizzolante.  It uses an unusual open tuning that I've never seen before: FACFCF.  I'm going to guess it's in the key of F major.  

I'lll start by writing an F major scale.  It has one flat, so it falls nicely on the guitar: 

\begin{music}
    \setstaffs1{1}
    \generalmeter{\meterfrac44}
    \generalsignature{-1}

    % F major scale
    %  F, G, A, B♭, C, D, and E
    \startpiece
    \notes \qu f \en 
    \notes \qu g \en 
        \notes \qu a \en 
        \notes \qu b \en 
    \bar
        \notes \qu c \en 
        \notes \qu d \en 
        \notes \qu e \en 
    \notes \qu f \en
    \endpiece
\end{music}

What are the chords that go with this scale?

\begin{music}
     % Set the scale
    \setstaffs1{1} % Number of staves
    \generalmeter{\meterfrac44}
    \generalsignature{-1}

    \startpiece
        \Notes\zchar{13}{C\textsuperscript{maj6}}\sk\loff{\zh{{J}{L}{N}}}\wh{a}\en\barre
        \Notes\zchar{13}{F\textsuperscript{7}}\sk\loff{\zh{{F}{H}{J}}}\loffset{1.0}{\fl L}\wh{L}\en\barre
    \endpiece
\end{music}

\end{document}

這是我運行時得到的 PDF 輸出:

在此輸入影像描述

問題:

  1. 如何讓音階音符繼續上升而不在 A 下降一個八度?
  2. 和弦符號的佈局相當晦澀難懂。我嘗試使用 TeXLive 安裝 PMX 包,但 TeXShop 抱怨找不到它?最好的方法是什麼?

答案1

廣告 1. 在 musixdoc.pdf 的末尾,在命令列表之前,您可以找到音符的名稱。因此:

\startpiece
    \notes \qu f\en 
    \notes \qu g\en 
        \notes \qu h\en 
        \notes \ql i\en 
    \bar
        \notes \ql j\en 
        \notes \ql k\en 
        \notes \ql l\en 
    \notes \ql m\en
    \endpiece

不要忘記從 i 處降低閥桿。

「晦澀難懂」是什麼意思?您想看到哪個和弦輸出?

我使用 TeXShop,當我說時它不會給出錯誤

\input pmx

當我說時出現錯誤

\input PMX

相關內容