텍스트로 간단하게 4분음표를 쓰고 싶습니다. 그러나 나는 사용 가능한 것이 있다는 것을 알고 있습니다 \textmusicalnode
. 하지만 이것은 나에게 4분음표를 주지 않습니다.
harmony
예를 들어 나에게 또는 4분음표를 wasysym
제공 하지만 패키지와 결합하면 오류가 발생하는 또는 \Vier
패키지 의 사용입니다 . 이 문제를 해결하려면 어떻게 해야 합니까?\quarternote
amssymb
편집하다
이것이 제가 서문에 패키지로 포함시킨 것입니다.
\RequirePackage{fix-cm}
\documentclass[a4paper,12pt,bibtotoc,liststotoc,BCOR=16mm,headinclude,numbers=noendperiod]{scrreprt}
\usepackage[ngerman,english]{babel}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{fontspec}
\usepackage{verbatim}
\usepackage[onehalfspacing]{setspace}
\usepackage{chngcntr}
\usepackage{enumerate}
\usepackage[style=alphabetic-verb,bibstyle=alphabetic,hyperref=true]{biblatex}
\usepackage[hang,small]{caption} % small and hanging captions
\usepackage{lmodern} %% Type1 font for non english language
\usepackage{graphicx} %% graphics
\usepackage{subfig} %% to place graphics beside each other
\usepackage{listings} %% to include code listings
\usepackage{xcolor} %% syntax highlight in code listings
\usepackage{amsfonts} %% number-symbols in formulas
\usepackage{mathrsfs}
\usepackage{xfrac} %% slanted fractions with font fixtures
\usepackage[plainpages=false]{hyperref}
\usepackage{fancyhdr} %% fancy headings and footers
\usepackage{harmony} %% musical symbols
그래도 패키지를 사용하면 다음과 같은 오류가 발생합니다 harmony
.
Latex Error: /usr/local/texlive/2011/texmf-dist/tex/latex/amsfonts/amssymb.sty:231
LaTeX Error: Command `\Finv' already defined.
Latex Error: /usr/local/texlive/2011/texmf-dist/tex/latex/amsfonts/amssymb.sty:232
LaTeX Error: Command `\Game' already defined.
Latex Error: /usr/local/texlive/2011/texmf-dist/tex/latex/amsfonts/amssymb.sty:237
LaTeX Error: Command `\beth' already defined.
Latex Error: /usr/local/texlive/2011/texmf-dist/tex/latex/amsfonts/amssymb.sty:238
LaTeX Error: Command `\gimel' already defined.
Latex Error: /usr/local/texlive/2011/texmf-dist/tex/latex/amsfonts/amssymb.sty:239
LaTeX Error: Command `\daleth' already defined.
답변1
wasysym
패키지를 로드하지 않고도 패키지의 4분음표 기호를 사용할 수 있습니다.
\documentclass{article}
\providecommand*{\quarternote}{%
\begingroup
\fontencoding{U}%
\fontfamily{wasy}%
\selectfont
\symbol{12}%
\endgroup
}
\begin{document}
\tiny \quarternote
\scriptsize \quarternote
\small \quarternote
\normalsize \quarternote
\large \quarternote
\Large \quarternote
\LARGE \quarternote
\huge \quarternote
\Huge \quarternote
\end{document}
\Vier
package harmony
는 고정된 글꼴 크기로 구성된 기호이기 때문에 권장하지 않습니다 .
다음 파일은 의 4분음표 기호를 비교 wasy
하고 기호 arev
에서 대체 경고를 제거합니다 (10pt보다 작은 크기만 굵게 표시할 수 없음).wasy
\bfseries
\documentclass{article}
% wasy
\newcommand*{\quarternotewasy}{%
\begingroup
\fontencoding{U}%
\fontfamily{wasy}%
\fontshape{n}%
\ssubSeriesBXtoB
\selectfont
\symbol{12}%
\endgroup
}
\makeatletter
\newcommand*{\ssubSeriesBXtoB}{%
\if b\expandafter\@car\f@series{}\@nil
\fontseries{b}%
\fi
}
\makeatother
% arev
\newcommand*{\quarternotearev}{%
\begingroup
\usefont{U}{zavm}{m}{n}%
\symbol{90}%
\endgroup
}
\newcommand*{\test}[2]{%
#2%
\tiny #1%
\scriptsize #1%
\small #1%
\normalsize #1%
\large #1%
\Large #1%
\LARGE #1%
\huge #1%
\Huge #1%
}
\begin{document}
\begin{tabular}{ll}
wasy: & \test{\quarternotewasy}{} \\
wasy-bold: & \test{\quarternotewasy}{\bfseries} \\
arev: & \test{\quarternotearev}{} \\
\end{tabular}
\end{document}