Small Cap Fonts

I am trying to figure out how to use a small cap font when creating a PDF document manually... for example:
7 0 obj
<<
/Type/Font
/Name /T5
/BaseFont/Helvetica,SmallCap
/Subtype/Type1
/Encoding /WinAnsiEncoding
>>
endobj
I've tried many different variations around this basic structure, and I have tried including a fontDescriptor
7 0 obj
<<
/Type/FontDescriptor
/Flags 131104 %NonSymbolic & Small Caps
endobj
Can anyone point me in the right direction?
Thanks!
Corey

> What I am not fully clear is how to use styled variations.
These are either separate fonts or typesetting effects.
>
> What I am trying to figure out is how to use Helvetica in small cap style.
>It seems that you are telling me that I would need to embed a Helvetica small caps font - but I don't know where to get it or how to embed it.
It's not clear whether such a thing even exists. Certainly, no such
font is commonly found, nor an Arial small caps.
If you had the font, the PDF Reference tells you how to embed it,
though this is a major project (people often find the scope of the PDF
generation project multiplies by 10 at this point).
>
>I have adobe
Big company, Adobe. What of their software do you have?
> I can print a Word document with small cap text to a pdf, and it works fine, but looking the file, I can't tell where it has gotten the font information.
Since you almost certainly don't have the font, this leaves us with
typographic effect. Just use capital letters in the regular font, but
use them smaller. This wouldn't satisfy a typographer, but if you are
happy with what Word does, go for it.
Use font metrics to determine the ascent of nondescending lower case
and upper case letters in your target font, and scale accordingly (so
your upper case is the same height as a lower case character).
> when I select to use small caps on a font in MS Word, do I have a specific small cap font installed, or is word doing its magic with the base font and different sizes?
Word is doing some simple magic. Even if you purchased and installed a
small caps font, Word would have no way to use it unless you selected
the font: Windows has no style linking beyond bold and italics.
Windows will in fact fake missing bold and italic, which is considered
in typographical terms truly evil.
Aandi Inston

Similar Messages

  • In Acrobat, is there a way to have a form field use small caps in place of lower-case text?

    I found java script online that will force a field to be all caps (using it in the format tab > custom format script). But I have not been able to find anything to change the lowercase text to small caps. Anyone know how to do that (or if it just can't be done in Acrobat)?

    But if you use a "small CAPs" font, you need to be sure the font is fully embedded in the PDF. If not, it is likely that users will not be able to use your form.

  • Small Caps disappeared

    Hi,
    I have InDesign-files made about one and a half monthes ago (with CS5).
    When they were done they had text with small caps (font used was Arial and Trebuchet), and they worked fine. Now, when I opened those same files (which have not been edited in the mean time), all the small caps are now showing as regular text, and I can't get the small caps to appear.
    This same behavior appears in both mac and windows cs5.
    What has happened, and how can I fix that?
    Best regards,
    Johanna

    Did you package the job? Check the file location for a fonts folder - then remove the fonts folder (copy it to a safe place)
    It's a known bug.
    http://indesignsecrets.com/document-fonts-feature-in-indesign-cs5-appears-buggy-with-small -caps.php

  • Removing underline on link that is small caps and different sizes

    I have this in a section of my HTML page. This is what is says but it is in small caps, 2 of the words are larger, and it's a maroon color and centered. I'd love to make it a link without the underline. None of the codes I've found online have worked. It looks fine except for the underline when it's a link issue.
    Since 1958:
    America's First
    Geosynthetics
    Company!
    CODE FOR THIS SECTION OF THE HTML:
    <div align="center"><span class="t2"><font color="#770506"><span style="font-variant:small-caps"><font color="#770506">Since</font></span> <strong style="font-size: 150%;"><font color="#770506">1958:</font><em> <br>
              </em></strong><span style="font-variant:small-caps">America's</span> <em><span style="font-variant:small-caps">First<br>
                </span></em><span style="font-variant:small-caps"><strong style="font-size: 150%;">Geosynthetics</strong></span><br>
              <span style="font-variant:small-caps">Company!</span></font></font></span></div>

    <div style="text-align:center;color:#770506;font-variant:small-caps;" class="t2">
    <a href="#" style="color:#770506;text-decoration:none;">Since<strong style="font-size: 150%;">1958:</strong><br>America's<em>First<br></em><strong style="font-size: 150%;">Geosynthetics</strong><br>
    Company!</a>
    </div>

  • How do I change caps of an OpenType font to small caps in my InDesign cc document?

    Greetings, Community. It would be great if I could discover how to change caps of an OpenType font to small caps in my InDesign cc document. That's the simple question.
    To be more exact, I have an 18-page play that contains stage directions in caps in parentheses, which I would like to change to small caps. The font I'm using is an OpenType, Minion Pro, with small caps.
    Another thing is, I'd ideally like to be able to do that without changing all caps in the document, and also, to not have to convert the caps to lower case in order to do it.
    My source document (which I Placed in my InDesign document) is Microsoft Word 2011 for Mac.
    I did go to Microsoft to find out how to do it in Word, but could only find a solution for Word for Windows.
    I did try their solution anyhow (a macro) but it didn't work.
         Thanks a lot. It's great being in InDesign even though I had my good years with QuarkXpress, which eventually became impossible for me.
         Morty Sklar

    Is this what you're talking about, Michael? Where do I paste it? (The whole thing?)
         Morty
    // Change case interactively. Find/change options should be set in InDesign's Find/Change window.
    // Peter Kahrel -- www.kahrel.plus.com
    #targetengine "change_case";
    create_palette().show();
    function create_palette ()
        var w = Window.find ("palette", "Change case");
        if (w === null)
            return create_palette_sub ();
        return w;
    function create_palette_sub ()
        var changetype;
        var w = new Window ("palette", "Change case", undefined, {resizeable: true});
            w.alignChildren = "fill";
            var options = [ChangecaseMode.lowercase, ChangecaseMode.uppercase];
            var rb = w.add ("panel");
                var upper_to_lower = rb.add ("radiobutton", undefined, "A > a");
                var lower_to_upper = rb.add ("radiobutton", undefined, "a > A");
            var smallcaps = w.add ("checkbox", undefined, " Apply SC");
            var b = w.add ("group {orientation: 'column', alignChildren: 'fill'}");
            var find = b.add ("button", undefined, "Find");
                var change = b.add ("button", undefined, "Change");
                var change_all = b.add ("button", undefined, "Change all");
                var change_find = b.add ("button", undefined, "Change/find");
            if (app.findGrepPreferences.findWhat.indexOf ("\\u") > -1)
                upper_to_lower.value = true;
                changetype = ChangecaseMode.lowercase;
            else
                lower_to_upper.value = true;
                changetype = ChangecaseMode.uppercase;
            upper_to_lower.onClick = function () {changetype = ChangecaseMode.lowercase};
            lower_to_upper.onClick = function () {changetype = ChangecaseMode.uppercase};
            var found, found_counter;
            find.onClick = function () {
                if (this.text === 'Find') {
                    found = app.documents[0].findGrep();
                    if (found.length > 0){
                        found_counter = 0;
                        find.text = 'Find next';
                        show_found (found[found_counter]);
                    } else {
                        alert ("No (more) matches found.");
                } else {
                    found_counter++;
                    if (found_counter < found.length){
                        show_found (found[found_counter]);
                    } else {
                        find.text = 'Find';
                        alert ("No (more) matches found.");
            change.onClick = function () {
                found[found_counter].changecase(changetype);
                if (smallcaps.value == true) {
                    found[found_counter].capitalization = Capitalization.smallCaps;
            change_find.onClick = function (){
                if (found_counter < found.length){
                    found[found_counter].changecase(changetype);
                    if (smallcaps.value == true) {
                        found[found_counter].capitalization = Capitalization.smallCaps;
                    found_counter++;
                    if (found_counter < found.length){
                        show_found (found[found_counter]);
                    } else {
                        alert ("No (more) matches found.");
            change_all.onClick = function () {
                for (var i = found_counter; i < found.length; i++) {
                    found[i].changecase(changetype);
                    if (smallcaps.value == true) {
                        found[i].capitalization = Capitalization.smallCaps;
            w.onDeactivate = w.onActivate = function () {find.text = 'Find'}
        return w;
        } // create_palette_sub
    function show_found (f)
        if (f.parentTextFrames.length === 0)  // If in overset text
            app.activeWindow.activePage = find_page(f.parentStory.textContainers[0].endTextFrame);
        else
            f.select();
            app.activeWindow.activePage = find_page (f.parentTextFrames[0]);
    function find_page(o)
        if (o.hasOwnProperty ("parentPage"))  // CS5 and later
            return o.parentPage;
        else
            return find_page_classic(o)
    function find_page_classic (o)
        try
            if (o.constructor.name == "Page")
                return o;
            switch (o.parent.constructor.name)
                case "Character": return find_page_classic (o.parent);
                case "Cell": return find_page_classic (o.parent.texts[0].parentTextFrames[0]);
                case "Table" : return find_page_classic (o.parent);
                case "TextFrame" : return find_page_classic (o.parent);
                case "Group" : return find_page_classic (o.parent);
                case "Story": return find_page_classic (o.parentTextFrames[0]);
                case "Footnote": return find_page_classic (o.parent.storyOffset);
                case "Page" : return o.parent;
            catch (_) {return ""}

  • Why is InDesign is using fake small caps instead of the real ones included in the font?

    I was trying to use the small caps in Hoefler Text, which I did by hitting the small caps button. Instead of using real small caps (which should be in proportion to the capitals), InDesign created fake small caps by scaling down the capitals (which is disgustingly ugly). I know Hoefler Text includes real small caps because I can see them in the glyphs palette. How do I get InDesign to use the real small caps instead of creating the fake ones?

    Just checked the font file. "Hoefler Text" comes courtesy of Mac OS X, pre-installed with your system. It's an OpenType font with TrueType outlines (actually a collection of four styles into one single file), and its typographic features, including the Small Caps charrington42 noticed in the Glyphs panel, are guided not by OpenType features but by Apple's AAT features.
    InDesign cannot use AAT features; only Apple's own software can. TextEdit, for example, can access the real small capitals:
    You could submit "Please support AAT" to Adobe using the Feature Request form -- I don't see anything against it. Or perhaps just the fact that it's only applicable to a small amount of fonts, and on Mac OS X only.

  • Is there a technique in FW to simulate or create a small caps style for a particular font?

    I am using MS sans serif, helvetica and arial and I would like to have a small caps version of the font.  Is there a way in FW to simulate
    that effect?

    Some free fonts are better quality than others, so when you set text in them check that the letters kern properly. (For example, does the o tuck under the cross of the T in To?) Given that a Web site is the face of your business, there's nothing wrong with investing in a good, high-quality typeface. Prices range anywhere from $20-$50 for single, simpler faces to $100-$200 for sets or more complex faces. (I'm in love with http://www.veer.com/products/typedetail.aspx?image=FOT0000074, but just can't figure out what to do with it. If I win the lottery, though, it's mine! When I redo my own Web site, I plan on using http://www.veer.com/products/typedetail.aspx?image=UMT0000431. Both fonts have alternate characters. Fireworks can't access them, but Illustrator can.)
    As for mouseovers, most people go for color changes in some form or other, either the color of the button text or background, or adding a glow around the text.
    If you want to browse around for inspiration, have a look at DesignMeltdown: http://www.designmeltdown.com/
    I also try to read Smashing Magazine regularly, lots of great info there: http://www.smashingmagazine.com/
    If you're going to redesign, I would suggest not using a monochromatic color scheme. While it's very thematic, it's also very calming and relaxing. I think raising some excitement for your work in your potential customer's minds would be a good idea. For exploring color themes, I like these two:
    Color Scheme Designer: http://colorschemedesigner.com/
    Kuler: http://kuler.adobe.com/
    I prefer Color Scheme Designer because I don't have to log in to save a color scheme. I just save the URL. Kuler has lots and lots of user-submitted presets, though, and I'm pretty sure there's a Kuler extension for Fireworks.

  • Small caps not working in web fonts

    Hi everyone,
    I'm having a problem implementing OpenType features in web fonts. No  matter what typeface or browser I use—and I've tried several of each—I  can't get the CSS font-face property to listen to  font-variant:small-caps. In every case, the browser synthesizes its own  small caps by scaling the full caps, which of course looks terrible.
    The typefaces I've tried with this are all open-source advanced  fonts: Cabin, Cardo, Lato, and Sorts Mill Goudy, all of which support  small caps at least in their roman, regular-weight face. I've used  Firefox 5, Opera 11.5, and the latest build of Iron (Chrome without Big  Brother), all to no avail.
    It's worth mentioning that other properties of advanced web  typography, such as automatic ligatures (as well as the font-face  property itself), are all working.
    You can see my test page at http://www.utcolmus.org/test.html , and the CSS file at http://www.utcolmus.org/main.css. Any help would be greatly appreciated!
    Thanks,
    Bram

    Yeah, that doesn't work.
    CSS 3 supports directly accessing real small caps. Currently only Firefox supports this, and only via moz-prefixed properties (which makes sense as CSS 3 isn't final yet).
    http://hacks.mozilla.org/2010/11/firefox-4-font-feature-support/

  • Photoshop Elements 5:  fonts in small caps

    Please help!  I'm using Photoshop Elements 5 and all the fonts are in small caps.  I've tried different fonts, I've tried starting and restarting program.  I can't seem to get the fonts back to lowercase.  Thanks!

    Try resetting the type tool. To do this, click on an icon or an arrow (depends on version of PE) in the tool's option bar, upper left.
    HTH

  • Office 2013 RTM: STILL no true small caps: WHY? WHY? WHY?

    I have just un-installed the Office 2013 Preview, and installed the Office 2013 RTM 60-day trial.
    I had hoped that between the two versions, the issue of missing true small caps in Word had been addressed. But no. Whilst Word 2013 supports OpenType ligatures and OpenType stylistic sets and OpenType old-style numbers and and and, it STILL DOES NOT SUPPORT
    TRUE SMALL CAPS. Yes, it has a small caps function, but this just reduces the size of the font, instead of using the dedicated small caps letters included in a lot of OpenType fonts. What's the difference? The difference is that with true small caps, the stroke
    width of upper case, lower case and small caps letters match, whereas in the cheapy, flimsy, yucky version that Office only offers, the small caps letters are thinner than the normal letters of that font - obviously so, as they are merely shrunken.
    Try it for yourself. Type something like "AaMmXx" in an OpenType font with small caps, say, Calibri or Gabriola, at, say, 24pt, in Word 2013 and in Publisher 2013, and apply small caps in each, and print them. Compare the stroke widths. See what I mean?
    Publisher does true small caps. Word doesn't.
    So, why, Microsoft, why, oh why, oh why, when other typographical features (ligatures, stylistic sets, etc. etc. & so 4th) are supported in Word 2013, are small caps not? I just don't understand it. Why? Are small caps held to be something that only
    professional typesetters should be allowed to use with typesetting programs like Publisher, whereas ordinary folk with Word shouldn't? Or is it trick to boost sales of Puiblisher? Or did no-one think about it? What is it? Because it's very annoying!

    Well, in the second place, inserting characters via Insert Symbol is a pain in the posterior, and, of course, the spell checker doesn't recognise them. But in the first place, that only works if the font author has been thoughtful enough to give the small
    caps glyphs Unicode code points, say, in the Private Use Area (like in Calluna). Normally, however, they don't - the small caps glyphs are only accessible via a small caps function, as lacking in Word. Excel is worse - apparently, Microsoft think that OpenType
    advanced features ought not to be used in spreadsheets.
    So having found fonts with small caps, the only way to use them is to use a font program either to assign the small caps glyphs to PUA code points, or to put them in a separate font (which at least means that other applications and spell checkers can use
    them).

  • Simulated helvetica small caps not displayed acceptably in PDF

    It's a never ending battle, this trying to get some sense out of computers. In a post earlier this year (http://forums.adobe.com/message/1287805#12878) I asked how to overcome the lack of proper small caps in Helvetica. Sandee came back with a suggestion, which I followed up, and it seemed to give reasonable results. And within InDesign, and when printed, it works.
    However, when I export to PDF the small caps are not shown correctly on the screen. (The PDF file can be downloaded from http://www.mediafire.com/download.php?nmjlhmiwt3i). They look a mess unless you zoom in about 500%. They print okay, but I'm not having a messy looking PDF sent to the printer. It's nothing but offputting.
    If that was the only difficulty I could probably accept it, but I intend making my two books freely available for download in PDF form and I certainly don't want rubbish-looking fonts on display.
    It looks like my mock small caps may have to be replaced with caps.
    QUES 1
    Is it possible to make my mock small caps display acceptably on the screen within a PDF? I have tried exporting to PDF at various resolutions, and with optimize for web turned on and off, but that makes no difference.
    QUES 2
    Another option is to get hold of a Helvetica font (or similar) that does have small caps. Where could I get hold of one of those?
    The original InDesign file from which the PDF was obtained, can be downloaded from http://www.mediafire.com/?zddtj5m5d3q in case anyone wants to play around.

    Thanks for the responses. I'm surprised the PDF looked okay, so I've emailed it to half a dozen people to see how it looks on their system. Maybe it's my screen or my Adobe Reader that's at fault.
    I have attached two screen captures of what it look like on my screen. One at 100%, the other at 200%.
    I'd like to continue using Helvetica because it's the one I've used in about 200 sidebars. If I change fonts, I imagine I could be days cleaning up the text oversets or undersets. I did think of changing fonts, and looked at all the sans serifs on my system, including the Open Type ones, but none had small caps. And buying an expert set: I could spend the next two days trying to sort out where to buy one of those and whether it actually contain small caps. Plus, I can't justify a price in excess of $100 for the sake of 400 words.

  • Pages 4.2 no Small Caps can be activated

    I use a lot Pages for texts, flyers and posters. There seems to be a serious bug within Pages 4.2. if you open the typo panel and activate the Small Caps feature or Opentype fonts they though they can be clicked Pages does not transform the marked text into Small Caps. So the this opentype feature doesn't finction under Pages any more. I experienced also kerning problems within Pages 4.2 using the word "Test". There is no kerning between T and e using the Fakt font from Ourtype. The same problems don't occur in TextEdit and the same problems never occured under Leopard or Lion, so it seems to be a sole Pages 4.2. problem under Mountain Lion. I reported it to the Apple Bug Reporter (no reply so far) but would be interested what you guys think of it and if you experience the same problems?

    Sorry for the spelling and grammar errors, here again the topic:
    There seems to be a serious bug within Pages 4.2. If you open the typography panel and activate the small caps feature of opentype fonts though you can click the check-box Pages does not transform the marked text into small caps. So this opentype feature (small caps) doesn't function under Pages any more.
    I experienced also kerning problems within Pages 4.2 using the word "Test". There is no kerning between T and e using the Fakt font from Ourtype. (There was never every any issue with this under Leopard or Lion!)
    The same problems don't occur in TextEdit under Mountain Lion, so it seems to be a sole Pages 4.2. problem under Mountain Lion.
    I reported it to the Apple Bug Reporter (no reply so far) but would be interested what you guys think about this and if you experience the same problems?

  • Small caps not displaying correctly in the ePub file

    Hello All,
    I am using cs5.5 to generate ePub file, and I found that small caps contents not displaying correctly in the generated ePub file even the CSS looks correct. Please check and confirm, if anyone faced this issue? Also other formatting components are looks fine in the ePub file.
    Thanks,
    Praveen

    @Jongware/Bob, thanks for your responses, I checked the ePub output using 'Adobe Digital Editions', and getting the same issue in 'Calibre', but in 'Sigil', it looks fine.
    In CSS it has been declared like below:
    span.SmallCaps { 
    font-variant : small-caps;
    Here 'SmallCaps' is the character style applied for the 'small caps' contents.
    Thanks,
    Praveen

  • Small caps in running heads - mixed case problem

    My running head is set to be small caps, and it picks up mixed-case text from the document. I want the head to be all 'lower case' small caps (or 'upper case', unless that really means ordinary caps) but can see no way to achieve this. Instead I get 'mixed case' small caps, if that makes any sense. If I select the head on the master page and then Type | Change Case, this has no effect on the appearance either on the master or the generated heads. How do I achieve uniform small caps where the source text for the running head is mixed-case? If small .indd attachments were allowed I would have attached one, but it got rejected despite not being llisted as a forbidden type.

    A few ways to do this:
    a script: http://jsid.blogspot.com/2005/09/script-of-day-changing-case-again.html
    or in your paragraph styles use OT small caps (assuming you're using an OT font)
    I also set up a keyboard shortcut, to Type > Change Case > lowercase
    you could probably do it with GREP too...

  • Problem with Small Caps

    I have a problem with small caps when using Times New Roman and Helvetica, but not when using Adobe Garamond Pro, and would like to find out why.
    I generate the small caps within InDesign by the "TT" box in the Control Window. Adobe Garamond comes up with beautiful small caps that blend in with the surrounding text. When I do the same with Helvetica, the small caps, especially if they have normal caps amongst them, are quite inelegant looking because of different letter widths.
    So I did some experiments with half a dozen other serif and sans-serif fonts and none of them were as elegant as Adobe Garamond Pro. For a sample of what I mean, download:
    http://www.mediafire.com/?z5fm0zndmzm
    which compares three fonts: Adobe Garmond, Heletica, and Times New Roman.
    Unfortunately, I did not pick up this problem until I received my first proof from the printers, and now I will have to change all the Helvetica small caps to normal caps, as I can see no other way of overcoming this inelegancy.
    I checked in New Scientist magazine (it uses a serif and sans-serif font throughout, and what I thought I remembered as small caps to begin their stories) to see what they do, but they actually use caps instead of small-caps at the beginning of stories.
    Three questions:
    Q1: Is the way I generate small caps the correct way?
    Q2: Is there something wrong with my Helvetica and Times New Roman fonts?
    Q3: Could it be that only Adobe Garamond has an internal, properly designed small caps?
    I have checked the attributes of the fonts: Garamond is Open Type Postscript, Helvetica is PostScript Type 1 , and Times New Roman is TrueType.
    Any comments most appreciated.

    Thanks for the hints. I tried Scott's method and it works with a bit of extra adjustment. The settings I obtained for 12 point Helvetica were:
    Horizontal and vertical scaling: 70.5%;
    Stroke: 0.1 pt
    Tracking: +25 em
    Baseline shift: +0.1 pt
    The steps to obtain small-caps 12 pt Helvetica are:
    Step 1: Type text as normal.
    Step 2: Select only the lower-case text you want to convert to small caps. i.e if what is to become small caps already has a capital (such as a place name) do not apply the settings to the capitals, unless that's the effect you want.
    Step 3: Apply the above settings manually or via or Character Style.
    Problem 1: How do I rid my Character Style of the font size so that only the scaling factors remain? As it is, if I want to apply small-caps to a different font size than the one I have set up, I have to manually change the font size after applying the style.
    Problem 2: The scaling factors do not appear to work for changes in font size. When I used 24 pt and applied the above settings, the small-caps were too thin. The method only really works for a particular size, which in reality is all you would normally require.

Maybe you are looking for

  • How come my macbook Pro doesn't automatically connect to my wifi when it is saved under known networks?

    How come my macbook Pro doesn't automatically connect to my wifi when it is saved under known networks and i have the box checked under network settings?

  • Why can I no longer connect to our home Wi-Fi?

    I love my tablet, but with the problems I have been having, I am thinking that it is time to buy a lap top!  It started with my having to reboot my tablet to connect to our home Wi-Fi.  I was thinking that maybe ti was just slow Time Warner internet.

  • How to add new data file

    Hi Friends, We have 4 below file systems. Sybase/TST/sapdata_1 Sybase/TST/sapdata_2 Sybase/TST/sapdata_3 Sybase/TST/sapdata_4 Already we have added one data file each in sapdata_1 and 2.  Sapdata3 and 4 are emptry. How to add new data file in sapdata

  • PcHDTV 5500 with 2.6.20-4

    I was running 2.6.19 on my mythtv server, and I did a pacman -Syu today...it updated the system to 2.6.20-4.  All seems to work except for my dvb cards!  I no longer have a /dev/dvb folders (I have two tuners) dmesg |grep dvb yeilds nothing. lsmod sh

  • IMovie11 hangs, freezes while generating thumbnails

    Often after importing MiniDV tapes using iMovie11 the progress bar for generating thumbnails gets to a certain point and then stops. It will remain this way for over a day unless I Force Quit the application. The event directory and thumbnail directo