Add period after every footnote number

I have a document with footnotes in the Word style, with the number superscripted. I want the footnote reference in the text to be superscripted, but not the corresponding number on the footnote. I'd like that to be the same size as the footnote text. I can change all these using find/change, but while I'm at it, I would like to add a period after every footnote number. Would someone be willing to suggest a way to do this? Thanks.

I'd suggest experimenting with the "Separator" category under Type > Document Footnote Options.

Similar Messages

  • After every Firefox 34.0 reloading my add-ons have been switched off by unknown program or virus. How can i solve this problem?

    ''locking this thread as duplicate, please continue at [https://support.mozilla.org/en-US/questions/1038650 /questions/1038650]''
    After every Firefox 34.0 reloading my add-ons have been switched off by unknown program or virus. Although i can switch them on and reboot firefox to fix it, but it is a little bit boring. How can i solve this problem?

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/viruses/disinfection/5350 Anti-Rootkit Utility - TDSSKiller]
    * [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] (for more info, see this [http://www.bleepingcomputer.com/download/adwcleaner/ alternate AdwCleaner download page])
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • After every Firefox 34.0 reloading my add-ons have been switched off by unknown program or virus.

    After every Firefox 34.0 reloading my add-ons have been switched off by unknown program or virus. Although i can switch them on and reboot firefox one more time to fix it, but it is a little bit boring. How can i solve this problem?

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/viruses/disinfection/5350 Anti-Rootkit Utility - TDSSKiller]
    * [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] (for more info, see this [http://www.bleepingcomputer.com/download/adwcleaner/ alternate AdwCleaner download page])
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Add 3 zero after every n element in an array

    Hi, I have an array that has 50 elements ( 0 and 1) . I would like to add 3 zero after every 5 elements . As below for the first 10 elements
    10101010111111101001 should become  10101010110001111101001000
    could you please help me on this one ? I would greatly appreciate if youd attach the code for it
    thanks

    Approach with for loop
    "In theory, theory and practice are the same. In practice, they’re not."

  • DG4ODBC adds black spaces after every character

    I am trying to set up HS using Oracle 10.2.0.5 on RHEL5 (64 bit), FreeTDS, and MS SQL Server.
    The ODBC Driver works fine:
    [oracle@phsbe1pr ~]$ isql sfasql_freetds_dsn sqlSinfoOne ***
    | Connected! |
    | |
    | sql-statement |
    | help [tablename] |
    | quit |
    | |
    SQL> select name, len( name ) from sys.objects where object_id < 20 ;
    ---------------------------------------------------------------------------------------------------------------------------------------------+
    | name | |
    ---------------------------------------------------------------------------------------------------------------------------------------------+
    | sysrscols | 9 |
    | sysrowsets | 10 |
    | sysallocunits | 13 |
    | sysfiles1 | 9 |
    | syspriorities | 13 |
    | sysfgfrag | 9 |
    ---------------------------------------------------------------------------------------------------------------------------------------------+
    SQLRowCount returns 6
    6 rows fetched
    SQL> quit
    [oracle@phsbe1pr ~]$
    [oracle@phsbe1pr ~]$ tsql -S SFASQL_FreeTDSName -U sqlSinfoOne -P ***
    locale is "en_US.UTF-8"
    locale charset is "UTF-8"
    using default charset "UTF-8"
    1> select name, len( name ) from sys.objects where object_id < 20
    2> order by 1
    3> go
    name
    sysallocunits 13
    sysfgfrag 9
    sysfiles1 9
    syspriorities 13
    sysrowsets 10
    sysrscols 9
    (6 rows affected)
    1> exit
    [oracle@phsbe1pr ~]$
    But when I use the dblink i got every string doubled with spaces after every char:
    [oracle@phsbe1pr ~]$ sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.5.0 - Production on Mon Jul 23 17:22:25 2012
    Copyright (c) 1982, 2010, Oracle. All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> set linesize 120
    SQL> column name format a40
    SQL> select "name", length ( "name" )
    2 from sys.objects@sfasql_link
    3 where "object_id" < 20
    4 order by 1
    5 /
    name LENGTH("NAME")
    s y s a l l o c u n i t s 26
    s y s f g f r a g 18
    s y s f i l e s 1 18
    s y s p r i o r i t i e s 26
    s y s r o w s e t s 20
    s y s r s c o l s 18
    6 rows selected.
    SQL>
    What can I do ?
    Mi init.ora is:
    HS_FDS_CONNECT_INFO = SFASQL_DSN
    HS_FDS_SHAREABLE_NAME = /usr/lib64/libodbc.so
    HS_FDS_TRACE_LEVEL = off
    HS_FDS_TRACE_FILE_NAME=/tmp/odbc_hs_sfa.trc
    HS_FDS_SQLLEN_INTERPRETATION = 32
    set ODBCINI=/etc/odbc.ini
    adn odbc.ini contains:
    [SFASQL_DSN]
    Description = sqlserver
    Driver = FreeTDS
    # Servername = SFASQL_FreeTDSName
    Server = phsspbe.perfumeholding.intra
    Address = 172.17.0.45
    Port = 1433
    Database = SFA_INTERSCAMBIO
    TDS_Version = 8.0
    Language = us_english
    TextSize = 1999
    PacketSize = 1470
    ClientCharset = ISO-8859-1
    DumpFile = /tmp/odbc_sfasql_dsn.log
    DumpFileAppend = Yes
    DebugFlags =
    Encryption = off
    #Trace = Yes
    #TraceFile = /tmp/odbc_sfasql_dsn.trc
    Thank you for every answer!
    Andrea

    1. Please add to the gateway init file HS_NLS_NCHAR=UCS2
    Then test again with a new SQL*Plus session.
    When it continues to fail, what's the character set of the Oracle database being used and how did you set the NLS_LANG in your environment?

  • Is it possible to automatically add a comma after every 6 characters has been typed in a text field?

    Hope someone can help me.
    What I basically need help with is how to make Acrobat add a comma after every 6 characters in a text field:
    XXXXXX,YYYYYY, ZZZZZZ etc

    I'm sorry, but I did not understand that (i'm using Acrobat Pro X)
    Am I supposed to go to:
    Text Field Properties > Format > Custom
    and then use Custom Format Script or Custom Keystroke Script?
    I tried both and it did not work.
    And do the Text Field have to be named "chunkSize"?
    Seems like it works. I had to move to the next formfield in order to see the effect.
    Is it possible to make it happen in real time (as you type the comma is inserted?)

  • Is it possible to automatically add hyphen after period on line break?

    I have words that contain periods e.g. "text1.text2". If the line breaks after period, there isn't hyphen. How can I automatically add hyphen after period on line break? I have tried to hyphenate the word in user dictionary and used discretionary hyphen but neither of them works.

    I don't believe there's a way to do this, but perhaps someone else has some thoughts. Best I can come up with is to make the . non-breaking and force the line to hyphenate in the first word.

  • After upgrading to Firefox 9.0.1, on first run after every reboot, the following warning apears for every installed Add-on. "Another program on your computer would like to modify Firefox with the following add-on"

    After upgrading to Firefox 9.0.1, on first run after every reboot, the following warning appears for every installed Add-on.
    "Another program on your computer would like to modify Firefox with the following add-on"
    So, i have to "Enable" my installed Add-ons on each reboot.
    Would you please help me !
    P.S.: I found that these files (and some others) will be deleted on each reboot, and it happens on computer start up (not at shut down)!
    extensions.ini
    extensions.sqlite
    extensions.sqlite-journal
    And as i mentioned, i have the same anti virus on my laptop and desktop, but i have not any problem on laptop.

    Do you have security software that acts like a sandbox or uses virtualization to restore files on a next boot?
    See also:
    *http://kb.mozillazine.org/Preferences_not_saved
    *https://support.mozilla.org/kb/Preferences+are+not+saved
    It is possible that there is a problem with the file(s) that store the extensions registry.
    Delete the files extensions.* (e.g. extensions.sqlite, extensions.ini, extensions.cache) and compatibility.ini in the Firefox profile folder to reset the extensions registry.
    *https://support.mozilla.org/kb/Profiles
    New files will be created when required.
    See "Corrupt extension files":
    *http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    *https://support.mozilla.org/kb/Unable+to+install+add-ons
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the Tools button at the left side of the Search Bar (or click the "Find Updates" button in older Firefox versions) to do a compatibility check or see if there is a compatibility update available.

  • Inserting a calculated column after every column in cross tab, in crystal report 2011

    HI,
    I want to insert a calculated column after every column i a cross tab . The cross tab shows , sales by region for a number of years , for example from 2007 to 2013. The year can be changed based on the user parameter. How can I do that ?
    Thanks

    Hi Feroz,
    To calculate the Percentage Change and also to show the Percentage sign, here's what you need to do:
    1) Right-click the Calculated Column Header > Calculated Member > Edit ColumnValue Formula and use this code:
    cdate(1890,01,01)
    If the field used as the column is a datetime field, use this:
    cdatetime(1890,01,01,0,0,0)
    2) Right-click one of the zero values in the Percentage Column and select Calculated Member > Edit Calculation formula and use this code:
    if CurrentColumnIndex  = 2 then 
        If GridValueAt(CurrentRowIndex, CurrentColumnIndex-2, CurrentSummaryIndex) = 0 then 
        0 
        else 
         (GridValueAt(CurrentRowIndex, CurrentColumnIndex-1, CurrentSummaryIndex) - GridValueAt(CurrentRowIndex, CurrentColumnIndex-2, CurrentSummaryIndex))/ 
         GridValueAt(CurrentRowIndex, CurrentColumnIndex-2, CurrentSummaryIndex)
         ) * 100 
    else 
        If GridValueAt(CurrentRowIndex, CurrentColumnIndex-3, CurrentSummaryIndex) = 0 then 
        0 
        else 
         (GridValueAt(CurrentRowIndex, CurrentColumnIndex-1, CurrentSummaryIndex) - GridValueAt(CurrentRowIndex, CurrentColumnIndex-3, CurrentSummaryIndex))/ 
         GridValueAt(CurrentRowIndex, CurrentColumnIndex-3, CurrentSummaryIndex)
         ) * 100 
    3) Right-click one of the Values in the summary cells > Format Field > Number tab > Customize > Currency Symbol tab > Click the formula button beside 'Currency Symbol' and use this code:
    If Year(GridRowColumnValue("Date_field")) = 1890 then
    "%" else "$"
    Note: Replace Date_field with the field name you've used as the Column in the Crosstab. The double-quotes ARE required and you should remove any curly braces that CR adds automatically.
    4) You might want to use a similar code in the 'Position' formula too.
    Let me know how this goes.
    -Abhilash

  • Any way (or script) to add a point-numbered footnote?

    (This is a cross-post from the Mac forum ... really need help here ... AM)
    A recent ID client who does heavy-duty legal publishing asked me this question, I didn't have an answer, but told her I'd post it here to see what the great minds have to say. (She wasn't sure she could explain it well enough.)
    They used to use Word to publish their tomes, huge loose-leaf ring binders, and moved to ID recently. They're missing an important Word feature (which may force them to abandon ID for this pub! Ack!) of being able to insert a "special" footnote that doesn't force subsequent footnotes to increment up in number.
    In other words, on a page with footnotes numberedd 15, 16, and 17, they need to be able to add a "15.1" footnote (and reference) after 15, leaving footnotes 16 and 17 etc. as is. Apparently this is a long-time practice in legal publishing. Word will continue to update all footnotes as necessary but skips the special ones, which need to be hand-updated. Not ideal, but workable.
    As far as I know, there's no way to do this in ID, nor any plug-in that will do that. (You can do this with numbered lists ... convert one of the numbered grafs to text and set the next one to start at the right number ... but not with footnotes.)
    Before you suggest that they fake it (hit a return after footnote 15 and manually enter/format a 15.1 footnote ... they've thought of that), the problem is what to do when the special footnote needs to be the first one in a list of footnotes, or the only one on a page.
    I would love to find a solution for them ... hate to see users have to move from InDesign *back* to Word!
    Edit: They're using InDesign CS4 but could use ID CS3 if necessary.

    this could be easily scripted - everything depend on the way they prepare texts
    robin
    www.adobescripts.com

  • Need to print a letter to bank after every payment run

    HI Gurus,
    i have a weird requirement from businees, i need to print a letter after every payment run for specific pyament mehod through F110. the config for this payment method in FBZP maintained as
    Paymnet mehod for : outgoing payment
    Paymnet method classification : Bank transfer
    this is letter will contain the most of the bank details in vendor master data (like bank account number, bank name, address,......e.t.c)
    Could you please help me in finding if there is any standard form has this details and driver program for this (i mean RFFO*).
    Thanks in Advance.
    Preethi

    See Chapter 11 of Oracle Business Intelligence Server Administration Guide (Version 10.1.3.2 December 2006).
    Oracle BI Administrators can configure the Oracle BI Server to maintain a local, disk-based cache of
    query result sets (query cache). The query cache allows the Oracle BI Server to satisfy many
    subsequent query requests without having to access back-end databases (such as Oracle or DB2).
    This reduction in communication costs can dramatically decrease query response time.
    As updates occur on the back-end databases, the query cache entries can become stale. Therefore,
    Oracle BI Administrators need to periodically remove entries from the query cache using one of the
    following methods:
    ■ Manually. In the Administration Tool, in the Manage menu, select Cache to open the Cache
    Manager. Cache Manager provides the maximum flexibility in choosing which cache entries to
    purge and when to purge them, but it requires direct human involvement. For more information,
    refer to “Using the Cache Manager” on page 255.
    ■ Automatically. In the Administration Tool, you can disable cache for the system, set caching
    attributes for a specific physical table, and use Oracle BI event tables to purge cache
    automatically. For additional information about managing cache, refer to “Monitoring and
    Managing the Cache” on page 234.
    ■ Programatically. The Oracle BI Server provides ODBC-extension functions for purging cache
    entries programmatically. These functions give you the choice and the timing flexibility of Cache
    Manager with the automation of event tables. You can write your own scripts to call these
    functions at times that fit your needs. For more information, refer to “Purging and Maintaining
    Cache Using ODBC Procedures” on page 235.

  • Add Kerning after Dropcaps

    Hello all,
    working with InDesign CS3, I have a document with a number of text frames and every text frame has got a paragraph inside itself. Every paragraph, starts with a one character long dropcap. My aim, would be to add the same metric kerning value after every dropcap instance in each text field.
    Any ideas?
    Thanks all
    Marco

    Something like this sets the kerning between the first and second characters in every text frame in the active document to 20.
    myTextframes = app.activeDocument.textFrames.everyItem().getElements();
    for (i = 0; i < myTextframes.length; i++)
      myTextframes[i].insertionPoints[1].kerningValue = 20;
    It doesn't check or catch any errors.
    Peter

  • I am trying to generate an array of 30 random numbers. after every 5 readings a new vi should open and tell the user that 5 readings has been completed. and again carry on with the generation of array.

    since i do not have a transducer now, i am currently generating an array of 30 random numbers. after every 5 readings a warning should be given to the user that 5 readngs are complete. this cycle should repeat. the array size is 30.
    please help me out,  waiting for reply asap.
    once i have the transducer, i will be taking 30 analog samples and then after every 5 smaples that wraning will be displaye din a new VI
    Solved!
    Go to Solution.

    Use a while loop with a time delay representing your sampling period.
    Use the count terminal to check if equals 4, so 4th iteration=5th sample.
    Use a case structure. The true case will only be executed on the 4th iteration.
    In the true case place a subVI  with your desired message in the front panel. Go to the VI properties window and set "open front panel when called".
    The closing condition of the warnign is not giving in your description.
    Consider that rather than usign a subvi for this, you could use the "One/Two/Three button dialog" or "display message" vis at the "dialog and user interface" pallete.
    Please give it a try and send your own VI. Do not expect us to provide a working solution.
    Regards,

  • Insert  Blank row  After every Row  in alv report

    How to insert blank  row After every row  in Alv report

    what do you mean by a 'blank row'? ALV displays tabular data with 'any' number of columns. Now if you actually want a blank row (no columns at all, just a row), then that is just not possible. If I'm not mistaken, this question was posted before, so try to do a search on SCN. See what is says.

  • When using rogers.yahoo mail, I need to refresh my screen after every 2-3 actions.

    While using Rogers.yahoo mail in FireFox, the screen freezes after every 2-3 actions (read email, delete email, respond to email, move email to folder etc.). I have to refresh the screen and then it goes along for another 2-3 actions and I have to refresh again. Very frustrating. I opened the same email account in Google Chrome and IE and it works fine there. This started happening yesterday.
    In perhaps an unrelated thing, I get this error message every day, once, when I start up my PC for the past 2 months:
    Microsoft.NET Framework
    Unhanded exception has occurred in your application If you click Continue, the application will ignore this error and attempt to continue. If you click Quit, the application will close immediately. Unable to load DLL 'hppatusg01.dll': The specified module could not be found (Exception from HRESULT:0x8007007E)

    No problem.
    If the above does not fix the issue, '''try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

Maybe you are looking for

  • Using iphoto with iphoto library on external hard drive

    My Imac is running snow leopard with ilife '11. I have imported way too many photos into Iphoto which is really slowing it down. I'd like to put all of my photos on an external hard drive and use that as my iphoto library--which should be possible, a

  • New Air Port Time Capsule Not Working With Old Airport Express

    I have been running a home network comprised of a Air Port Time Capsule (A1254) and 5 ea Air Port Express (A1264) for several years with no problem. The Air Port Time Capsule (A1254) died and I replaced it with an Air Port Time (A1470). Now none of t

  • User rights management

    Hi We may use Diadem for a group of 20 people, installed on Windows 2000 PC and/or Vista and using floatting licences . How can I set up user rights to allow only some people to do some operations, such as writting  dataplugins or create templates? I

  • I'm getting unknown error message 0xE000065 when plugging in any ipod/iphone into itunes. Why????

    I'm getting unknown error message 0xE000065 when plugging in any ipod/iphone into itunes. Why????

  • SFG alternative BOM in Different BOM

    Hi all , I have one SFG which is having two alternative bom . This SFG is used in 2 finished material BOM . In FG material- 1  i want use SFG alternative -1 and in FG material -2  i want to use SFG alternative -2 , when  I RUN mrp system should selec