The barred V and R - Versicles and responses
  • Optimatus
    Posts: 10
    Good morning,

    I am still trying out gregorio and I have made some progress. Yet, I have a problem with the barred V and R.

    I copied this example from the gregorio website:

    ===START:

    % !TEX TS-program = LuaLaTeX+se
    \documentclass[11pt]{article}

    \usepackage{gregoriotex}
    \usepackage{fullpage}
    \usepackage{libertine}

    \gresetinitiallines{0}
    \greseteolcustos{manual}%
    \pagestyle{empty}

    \begin{document}

    \noindent%
    \begin{minipage}[t]{4.8cm}%
    \gabcsnippet{(c4) V/. Ky(f)ri(d)e(d) e(d)le(d)i(c)son(d.) R/.(::)}%
    \end{minipage}%
    \begin{minipage}[t]{3.6cm}%
    \gresetlinecolor{gregoriocolor}%
    \gresetclef{invisible}%
    \gabcsnippet{ Chris(f)te(d) e(d)le(d)i(c)son(d.)}%
    \end{minipage}%
    \begin{minipage}[t]{4.5cm}%
    \gresetclef{invisible}%
    \gabcsnippet{V/.(::) Ky(f)ri(d)e(d) e(d)le(d)i(c)son(d.) (::)}%
    \end{minipage}%

    \end{document}

    === end

    Everything appears correctly except the barred V and R. I tried sp and /sp already, but yet no better result. I have seen another discussion about this already, but after implementing the good ideas from that discussion, I still have no better result. Is anyone willing to help me?

    Kind regards from the Netherlands,

    Erik
  • Liam
    Posts: 4,939
    Maybe this will help? http://www.romanliturgy.org/?p=144
    Thanked by 1Optimatus
  • JonathanKKJonathanKK
    Posts: 542
    If you are working with the online page here, an example of how to do the verse and response signs would be:

    initial-style:0;
    %%
    (c4)<sp>V/</sp>.(h) <sp>R/</sp>.(h)


    If you mess up the wrong jot or tittle, you will of course not get what you are aiming at.

    In TeX, if you are typing text and need to call for these characters, you use the commands \Vbar. and \Rbar.

    However, in this case you need also to have before the start of your document the command to \usepackage{gregoriosyms}.

    I mention this because I think that there have been occasional instances when I have had to resort to the TeX commands \Vbar and \Rbar when the gabc codes for them didn't happen to produce the correct results.

    At any rate, this is how things work for me; the caveat is, I haven't updated since 2012; also, a number of things in the code you have posted are not familiar to me (though possibly they are just features I never learned to use).
    Thanked by 1Optimatus
  • Optimatus
    Posts: 10
    Thanks for your help.

    Is there also a possibility to put a V/ over an large initial?
  • JonathanKKJonathanKK
    Posts: 542
    Is this it:

    annotation:\Vbar.;
    %%
    (c4)DE(h)us(h)
    Thanked by 1Optimatus
  • CHGiffenCHGiffen
    Posts: 5,148
    Just type: \mbox{V\kern-.5em /}
    if \Vbar seems to give you trouble. E.g. the following will produce a barred V above the large first letter.

    annotation: \mbox{V\kern-.5em /} ;

    See this thread for further details.
  • Optimatus
    Posts: 10
    Thank you! This is working :)