Saint abbreviationScots-Irish American surnames: Mc - how to achieve a range of aesthetically appealing...

How to deal with possible delayed baggage?

How does Leonard in "Memento" remember reading and writing?

Microtypography protrusion with Polish quotation marks

Do authors have to be politically correct in article-writing?

Is there a lava-breathing lizard creature (that could be worshipped by a cult) in 5e?

The probability of reaching the absorbing states from a particular transient state?

Can the "Friends" spell be used without making the target hostile?

False written accusations not made public - is there law to cover this?

What is the wife of a henpecked husband called?

What game did these black and yellow dice come from?

Book where a space ship journeys to the center of the galaxy to find all the stars had gone supernova

I have trouble understanding this fallacy: "If A, then B. Therefore if not-B, then not-A."

How vim overwrites readonly mode?

How do you voice extended chords?

What will happen if I transfer large sums of money into my bank account from a pre-paid debit card or gift card?

Eww, those bytes are gross

Could an Apollo mission be possible if Moon would be Earth like?

Am I correct in stating that the study of topology is purely theoretical?

Coworker asking me to not bring cakes due to self control issue. What should I do?

Non-Cancer terminal illness that can affect young (age 10-13) girls?

What essential properties make us human?

Has any human ever had the choice to leave Earth permanently?

What happens when the wearer of a Shield of Missile Attraction is behind total cover?

Why is Agricola named as such?



Saint abbreviation


Scots-Irish American surnames: Mc - how to achieve a range of aesthetically appealing raised-c with underscore?babel, frenchb and em dashCitations: Sort and Compress with superscript (Nature style) using non-superscript dash (xetex+Linux Libertine)Spacing in french documents?Non-breaking spaces inside dashesSetting [frenchb]{babel} with biblatex puts author names in small capitals. How to get back to first letter capitalized?Four columns footnotes in a two columns layoutbibliography option in FrenchFrench characters in TeXworksaccented characters errorMaking hyphens in text slightly longer and thinner













5















I would like to know if there is a way to abbreviate "saint" in this french way. A dash is also commonly used.



enter image description here



My researches are unsuccessful at this point, thanks in advance.










share|improve this question























  • This is not a standard abbreviation and is used just for street signs, as far as I know. Did you find in other texts?

    – egreg
    58 mins ago











  • Okay did not know that. I don't think so, mainly on street sign yes. I really like the way it look compare to a simple St. I should not use it in a french document?

    – tugdual
    48 mins ago











  • Peripherally related: tex.stackexchange.com/questions/364024/…

    – Steven B. Segletes
    37 mins ago











  • Normally, this adjective should not be abbreviated in French, except occasionally if you're lacking space.

    – Bernard
    29 mins ago
















5















I would like to know if there is a way to abbreviate "saint" in this french way. A dash is also commonly used.



enter image description here



My researches are unsuccessful at this point, thanks in advance.










share|improve this question























  • This is not a standard abbreviation and is used just for street signs, as far as I know. Did you find in other texts?

    – egreg
    58 mins ago











  • Okay did not know that. I don't think so, mainly on street sign yes. I really like the way it look compare to a simple St. I should not use it in a french document?

    – tugdual
    48 mins ago











  • Peripherally related: tex.stackexchange.com/questions/364024/…

    – Steven B. Segletes
    37 mins ago











  • Normally, this adjective should not be abbreviated in French, except occasionally if you're lacking space.

    – Bernard
    29 mins ago














5












5








5








I would like to know if there is a way to abbreviate "saint" in this french way. A dash is also commonly used.



enter image description here



My researches are unsuccessful at this point, thanks in advance.










share|improve this question














I would like to know if there is a way to abbreviate "saint" in this french way. A dash is also commonly used.



enter image description here



My researches are unsuccessful at this point, thanks in advance.







xetex typography french






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 1 hour ago









tugdualtugdual

622




622













  • This is not a standard abbreviation and is used just for street signs, as far as I know. Did you find in other texts?

    – egreg
    58 mins ago











  • Okay did not know that. I don't think so, mainly on street sign yes. I really like the way it look compare to a simple St. I should not use it in a french document?

    – tugdual
    48 mins ago











  • Peripherally related: tex.stackexchange.com/questions/364024/…

    – Steven B. Segletes
    37 mins ago











  • Normally, this adjective should not be abbreviated in French, except occasionally if you're lacking space.

    – Bernard
    29 mins ago



















  • This is not a standard abbreviation and is used just for street signs, as far as I know. Did you find in other texts?

    – egreg
    58 mins ago











  • Okay did not know that. I don't think so, mainly on street sign yes. I really like the way it look compare to a simple St. I should not use it in a french document?

    – tugdual
    48 mins ago











  • Peripherally related: tex.stackexchange.com/questions/364024/…

    – Steven B. Segletes
    37 mins ago











  • Normally, this adjective should not be abbreviated in French, except occasionally if you're lacking space.

    – Bernard
    29 mins ago

















This is not a standard abbreviation and is used just for street signs, as far as I know. Did you find in other texts?

– egreg
58 mins ago





This is not a standard abbreviation and is used just for street signs, as far as I know. Did you find in other texts?

– egreg
58 mins ago













Okay did not know that. I don't think so, mainly on street sign yes. I really like the way it look compare to a simple St. I should not use it in a french document?

– tugdual
48 mins ago





Okay did not know that. I don't think so, mainly on street sign yes. I really like the way it look compare to a simple St. I should not use it in a french document?

– tugdual
48 mins ago













Peripherally related: tex.stackexchange.com/questions/364024/…

– Steven B. Segletes
37 mins ago





Peripherally related: tex.stackexchange.com/questions/364024/…

– Steven B. Segletes
37 mins ago













Normally, this adjective should not be abbreviated in French, except occasionally if you're lacking space.

– Bernard
29 mins ago





Normally, this adjective should not be abbreviated in French, except occasionally if you're lacking space.

– Bernard
29 mins ago










2 Answers
2






active

oldest

votes


















4














The following should produce what you want. You can use an optional argument to specify another letter than T (e.g. t):



documentclass[]{article}

newsaveboxmyboxA
newsaveboxmyboxB
newcommandsaint[1][T]
{%
begingroup
sboxmyboxA{S}%
useboxmyboxA
sboxmyboxB{tiny#1}%
rlap{raisebox{dimexprhtmyboxA-htmyboxB}{useboxmyboxB}}%
makebox[wdmyboxB]{.}%
endgroup
}

begin{document}
saint Germain
saint[t] Germain
end{document}


enter image description here






share|improve this answer
























  • Thanks a lot, that's perfect!

    – tugdual
    44 mins ago



















1














Just for fun:



documentclass{article}
usepackage{xparse}
usepackage{fontspec}

setmainfont{Libre Bodoni}

NewDocumentCommand{frabbr}{sm}{%
IfBooleanTF{#1}{dofrabbr{}{#2}}{dofrabbr{hfil}{#2}}%
}

newcommand{dofrabbr}[2]{%
vbox tofontcharhtfont`T {%
ialign{%
#1##hfilcr
relscriptsize#2cr
noalign{nointerlineskipvfill}
.cr
}%
}%
}

makeatletter
newcommand{relscriptsize}{%
check@mathfontsfontsizessf@sizez@selectfont
}
makeatother

begin{document}

bfseries
begin{tabular}{@{}c@{}}
6frabbr*{me} Arrfrabbr{T} \
BOULEVARD \
Sfrabbr{T} GERMAIN
end{tabular}

end{document}


enter image description here






share|improve this answer

























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "85"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f476771%2fsaint-abbreviation%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    4














    The following should produce what you want. You can use an optional argument to specify another letter than T (e.g. t):



    documentclass[]{article}

    newsaveboxmyboxA
    newsaveboxmyboxB
    newcommandsaint[1][T]
    {%
    begingroup
    sboxmyboxA{S}%
    useboxmyboxA
    sboxmyboxB{tiny#1}%
    rlap{raisebox{dimexprhtmyboxA-htmyboxB}{useboxmyboxB}}%
    makebox[wdmyboxB]{.}%
    endgroup
    }

    begin{document}
    saint Germain
    saint[t] Germain
    end{document}


    enter image description here






    share|improve this answer
























    • Thanks a lot, that's perfect!

      – tugdual
      44 mins ago
















    4














    The following should produce what you want. You can use an optional argument to specify another letter than T (e.g. t):



    documentclass[]{article}

    newsaveboxmyboxA
    newsaveboxmyboxB
    newcommandsaint[1][T]
    {%
    begingroup
    sboxmyboxA{S}%
    useboxmyboxA
    sboxmyboxB{tiny#1}%
    rlap{raisebox{dimexprhtmyboxA-htmyboxB}{useboxmyboxB}}%
    makebox[wdmyboxB]{.}%
    endgroup
    }

    begin{document}
    saint Germain
    saint[t] Germain
    end{document}


    enter image description here






    share|improve this answer
























    • Thanks a lot, that's perfect!

      – tugdual
      44 mins ago














    4












    4








    4







    The following should produce what you want. You can use an optional argument to specify another letter than T (e.g. t):



    documentclass[]{article}

    newsaveboxmyboxA
    newsaveboxmyboxB
    newcommandsaint[1][T]
    {%
    begingroup
    sboxmyboxA{S}%
    useboxmyboxA
    sboxmyboxB{tiny#1}%
    rlap{raisebox{dimexprhtmyboxA-htmyboxB}{useboxmyboxB}}%
    makebox[wdmyboxB]{.}%
    endgroup
    }

    begin{document}
    saint Germain
    saint[t] Germain
    end{document}


    enter image description here






    share|improve this answer













    The following should produce what you want. You can use an optional argument to specify another letter than T (e.g. t):



    documentclass[]{article}

    newsaveboxmyboxA
    newsaveboxmyboxB
    newcommandsaint[1][T]
    {%
    begingroup
    sboxmyboxA{S}%
    useboxmyboxA
    sboxmyboxB{tiny#1}%
    rlap{raisebox{dimexprhtmyboxA-htmyboxB}{useboxmyboxB}}%
    makebox[wdmyboxB]{.}%
    endgroup
    }

    begin{document}
    saint Germain
    saint[t] Germain
    end{document}


    enter image description here







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered 52 mins ago









    SkillmonSkillmon

    22.9k11943




    22.9k11943













    • Thanks a lot, that's perfect!

      – tugdual
      44 mins ago



















    • Thanks a lot, that's perfect!

      – tugdual
      44 mins ago

















    Thanks a lot, that's perfect!

    – tugdual
    44 mins ago





    Thanks a lot, that's perfect!

    – tugdual
    44 mins ago











    1














    Just for fun:



    documentclass{article}
    usepackage{xparse}
    usepackage{fontspec}

    setmainfont{Libre Bodoni}

    NewDocumentCommand{frabbr}{sm}{%
    IfBooleanTF{#1}{dofrabbr{}{#2}}{dofrabbr{hfil}{#2}}%
    }

    newcommand{dofrabbr}[2]{%
    vbox tofontcharhtfont`T {%
    ialign{%
    #1##hfilcr
    relscriptsize#2cr
    noalign{nointerlineskipvfill}
    .cr
    }%
    }%
    }

    makeatletter
    newcommand{relscriptsize}{%
    check@mathfontsfontsizessf@sizez@selectfont
    }
    makeatother

    begin{document}

    bfseries
    begin{tabular}{@{}c@{}}
    6frabbr*{me} Arrfrabbr{T} \
    BOULEVARD \
    Sfrabbr{T} GERMAIN
    end{tabular}

    end{document}


    enter image description here






    share|improve this answer






























      1














      Just for fun:



      documentclass{article}
      usepackage{xparse}
      usepackage{fontspec}

      setmainfont{Libre Bodoni}

      NewDocumentCommand{frabbr}{sm}{%
      IfBooleanTF{#1}{dofrabbr{}{#2}}{dofrabbr{hfil}{#2}}%
      }

      newcommand{dofrabbr}[2]{%
      vbox tofontcharhtfont`T {%
      ialign{%
      #1##hfilcr
      relscriptsize#2cr
      noalign{nointerlineskipvfill}
      .cr
      }%
      }%
      }

      makeatletter
      newcommand{relscriptsize}{%
      check@mathfontsfontsizessf@sizez@selectfont
      }
      makeatother

      begin{document}

      bfseries
      begin{tabular}{@{}c@{}}
      6frabbr*{me} Arrfrabbr{T} \
      BOULEVARD \
      Sfrabbr{T} GERMAIN
      end{tabular}

      end{document}


      enter image description here






      share|improve this answer




























        1












        1








        1







        Just for fun:



        documentclass{article}
        usepackage{xparse}
        usepackage{fontspec}

        setmainfont{Libre Bodoni}

        NewDocumentCommand{frabbr}{sm}{%
        IfBooleanTF{#1}{dofrabbr{}{#2}}{dofrabbr{hfil}{#2}}%
        }

        newcommand{dofrabbr}[2]{%
        vbox tofontcharhtfont`T {%
        ialign{%
        #1##hfilcr
        relscriptsize#2cr
        noalign{nointerlineskipvfill}
        .cr
        }%
        }%
        }

        makeatletter
        newcommand{relscriptsize}{%
        check@mathfontsfontsizessf@sizez@selectfont
        }
        makeatother

        begin{document}

        bfseries
        begin{tabular}{@{}c@{}}
        6frabbr*{me} Arrfrabbr{T} \
        BOULEVARD \
        Sfrabbr{T} GERMAIN
        end{tabular}

        end{document}


        enter image description here






        share|improve this answer















        Just for fun:



        documentclass{article}
        usepackage{xparse}
        usepackage{fontspec}

        setmainfont{Libre Bodoni}

        NewDocumentCommand{frabbr}{sm}{%
        IfBooleanTF{#1}{dofrabbr{}{#2}}{dofrabbr{hfil}{#2}}%
        }

        newcommand{dofrabbr}[2]{%
        vbox tofontcharhtfont`T {%
        ialign{%
        #1##hfilcr
        relscriptsize#2cr
        noalign{nointerlineskipvfill}
        .cr
        }%
        }%
        }

        makeatletter
        newcommand{relscriptsize}{%
        check@mathfontsfontsizessf@sizez@selectfont
        }
        makeatother

        begin{document}

        bfseries
        begin{tabular}{@{}c@{}}
        6frabbr*{me} Arrfrabbr{T} \
        BOULEVARD \
        Sfrabbr{T} GERMAIN
        end{tabular}

        end{document}


        enter image description here







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited 14 mins ago

























        answered 24 mins ago









        egregegreg

        722k8719163216




        722k8719163216






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f476771%2fsaint-abbreviation%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Cannot install PyQt5 The Next CEO of Stack OverflowCannot install tcpreplay 3.4.4cannot...

            Kapp-Putsch Acontecimentos | Outros artigos | Menu de navegação

            Why did early computer designers eschew integers? The Next CEO of Stack OverflowWhat register...