How to write roman numeral greater than 10,000?

Hi Everybody
I'm writing my first Math book and I can't find under Edit-> Special Characters the symbol for that.
For exemple 15,000 = XV : they used a horizontal line over each letter to represent  x10,000.
This workaround of using  _ in the previous line joins the 2 horizontal lines, what wasn't supposed to happen.
Anybody knows how to do it?
Have a great Year and thanks in advance.

Hi Tom
Where is the over bar? I can´t find it.
The only symbol with over bar that could be used as roman numeral is under latin:

Similar Messages

  • How do I download files greater than 200MB to my Iphone now my music is in the iCloud?

    How do I download files greater than 200MB to my Iphone now my music is in the iCloud? I still have my music on my hard drive of course.

    Go to settings --> store --> and make sure automatic downloads for music is on.  If you download music in iTunes, it should automatically download to your phone.

  • How do you show usernames greater than 8 characters in   /usr/ucb/ps ?

    Help!
    I am trying to write a process kill script, or rather, modify our linux ones for solaris. The problem is a catch-22 :
    a) the string I need to grep for is hidden way up the
    command string hence I cannot use 'ps', I need to
    use /usr/ucb/ps -auxww .
    b) some usernames are greater than 8 characters...
    Now this is fine with ps -U command, as this will
    correctly match a 9-character username. However
    /usr/ucb/ps does not seem to have this option; you
    can provide an extra option to get user info to display
    in the output under a column heading however this
    username is truncated at 8 characers. The
    standard username field in both versions of the
    ps command is truncated at 8 characters.
    how do I grep for my deeply-hidden string and a
    9-digin username ?
    is there any way to do this in a single command?
    I can maybe script this, do a ps -U on the user,
    awk the PID out the results, use /usr/ucb/ps and
    grep on the PID and the user string ... wondered
    if I've missed an option and this can be done by
    a single command rather than a script ?
    thanks!

    Help!
    I am trying to write a process kill script, or rather, modify our linux ones for solaris. The problem is a catch-22 :
    a) the string I need to grep for is hidden way up the
    command string hence I cannot use 'ps', I need to
    use /usr/ucb/ps -auxww .
    b) some usernames are greater than 8 characters...
    Now this is fine with ps -U command, as this will
    correctly match a 9-character username. However
    /usr/ucb/ps does not seem to have this option; you
    can provide an extra option to get user info to display
    in the output under a column heading however this
    username is truncated at 8 characers. The
    standard username field in both versions of the
    ps command is truncated at 8 characters.
    how do I grep for my deeply-hidden string and a
    9-digin username ?
    is there any way to do this in a single command?
    I can maybe script this, do a ps -U on the user,
    awk the PID out the results, use /usr/ucb/ps and
    grep on the PID and the user string ... wondered
    if I've missed an option and this can be done by
    a single command rather than a script ?
    thanks!

  • How to find login times greater than 24 hours from custom table.

    Hello Guru's,
    I am having trouble approaching how to construct a query that will find who has been logged in for more than 24 hours, this table is updated every few hours to show who's logged in and where- I am attempting to find out if someone has been logged in for more than 24 hours- if so, who and where. This is difficult for me because I need to compare each recorded for each user login and then see if the next entry is greater than 24 hours from the previous entry.
    A table holds the login times and locations as table position_hist:
    position_id,userid,upd_date.
    Something like;
    select position_id,userid,upd_date from position_hist where (select upd_date from position_hist where "the next entry for that user and that position is greater than 24 hours?????"
    I guess the easier way to look at it is for a given position_id who has been logged in for more than 24 hours in one go.
    Any advice would be brilliant :-)

    It's hard without knowing your Oracle version, or having any sample data to work with. Please post that in the future using \ tags and DDL/DML.
    Here is what I came up with as a guess:SQL> WITH POSITION_HIST AS
    2 (
    3 SELECT 1 AS POSITION_ID, 1 AS USER_ID, TRUNC(SYSDATE) AS UPD_DATE FROM DUAL UNION ALL
    4 SELECT 1 AS POSITION_ID, 1 AS USER_ID, TRUNC(SYSDATE)+1 AS UPD_DATE FROM DUAL UNION ALL
    5 SELECT 1 AS POSITION_ID, 1 AS USER_ID, TRUNC(SYSDATE)+2 AS UPD_DATE FROM DUAL UNION ALL
    6 SELECT 1 AS POSITION_ID, 1 AS USER_ID, TRUNC(SYSDATE)+4 AS UPD_DATE FROM DUAL UNION ALL
    7 SELECT 3 AS POSITION_ID, 2 AS USER_ID, TRUNC(SYSDATE) AS UPD_DATE FROM DUAL UNION ALL
    8 SELECT 3 AS POSITION_ID, 2 AS USER_ID, TRUNC(SYSDATE)+1 AS UPD_DATE FROM DUAL UNION ALL
    9 SELECT 3 AS POSITION_ID, 2 AS USER_ID, TRUNC(SYSDATE)+2 AS UPD_DATE FROM DUAL UNION ALL
    10 SELECT 4 AS POSITION_ID, 21 AS USER_ID, TRUNC(SYSDATE)+2 AS UPD_DATE FROM DUAL
    11 )
    12 SELECT POSITION_ID
    13 , USER_ID
    14 FROM
    15 (
    16 SELECT POSITION_ID
    17 , USER_ID
    18 , UPD_DATE - LAG(UPD_DATE) OVER (PARTITION BY USER_ID ORDER BY UPD_DATE) AS LOGGED_IN_TIME
    19 , ROW_NUMBER() OVER (PARTITION BY USER_ID ORDER BY UPD_DATE DESC) RN
    20 FROM POSITION_HIST
    21 )
    22 WHERE LOGGED_IN_TIME > 1 AND RN = 1
    23 /
    POSITION_ID USER_ID
    1 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to check arraylist size greater than 1 using expression language in jsp

    I want to remove the scripplet in jsp, so i am using jstl tags with expression language in it.
    My scripplet is
    <% if (arraylist.size() > 1) {
    ---do something ----
    %>
    i wanted to change this to
    <c:if test="${ somecondition }">
    ---do something ----
    </c:if>
    here "somecondition" is exactly i need to check whether my arraylist size is greater than 1.
    so please can anyone help me how can i do that.

    If you do not mind, you can create a function and package it into a tag library of your own. Then you can use the function just as the existing expressions language construct. You may take a look at the article use functions in jsp expression language.

  • How to persist blob of great than 4KB to Oracle?

    I am running Oracle 9i with Kodo 3.0. Kodo fails to persist blob greater
    than 4KB to oracle. I understand this is an old problem of Oracle thin
    driver. How do I configure it in kodo? so it can persist blobs of more
    than 4KB??

    Were you able to get this working?
    Kodo can certainly persist blobs of over 4K in Oracle, and in fact we
    have internal tests for this specific case. Exactly what JDBC driver
    are you using?

  • How sql server datbase handles more than 50,000 Conccurrent connection at a time

    there is any feature of sql server 2008 r2 database that can handles more than 50,000 concurrent connection at a time with high availability. That can do " insert/update/delete/select "  anything.

    SQL server cannot accommodate 50k update statements simultaneously from 50k sessions. As others have stated, the physical active session limit of the platform is ~32k, and if you genuinely want that out of the box with load balancing on a single db at that
    kind of scale then sql server 2008 r2 is the wrong platform.
    For what it's worth, Minimum memory overhead per connection will help you work out what your minimum memory requirements are. Note that it's variable dependent
    upon the network packet size, which is partially a configuration question, partly one of instruction (byte size of actual db interactions) and finally the size of the actual workload being generated by the session.
    Number of processors, and indeed what their capabilities are, that's entirely up to you. To facilitate such a high number of connections concurrently in all honesty I think your network stack is a bigger concern. There is no single golden configuration
    for SQL Server, certainly not something that could win a pub quiz with the details provided. While it would be possible to design a theoretical configuration on paper without resorting to building the tin, I can imagine the numbers you come up with might be
    a little difficult to build. Just ask Amazon!

  • How to write a numeric value to a plc register using a radio button

    I'm want display a HOA (HAND/OFF/AUTO) on my screen. Lookout is connected to a Allen Bradley PLC. I am trying to write to a "N" register. I want to write a zero to open all (eg) N7:10 bits, writing a one (1) will close a contact N7:10/0 and writing a two (2) will close N7:10/1 etc. How do I do it? Can I use a radio button and if so, how?

    ICI,
    Just wanted to let you know that you have posted your question in the
    MATRIXx part of the forum.  There is a specific board for
    Lookout.  If you repost your message there you will be more likely
    to get a good answer.
    Carl L
    National Instruments

  • How to display a time greater than 24hrs?

    Hi all
    I am trying to create a wages tracker by entering start and finishing times for each day, working out the time worked and then adding it all together to get a weekly value. This works fine and if I have 5 days at 9hrs it correctly gives me 45h.
    Then I want to create an IF function to say if the total hours worked for that week are more than 35h display the amount of overtime worked (in this case it would be 10h) else display "No OT Worked".
    This is what I have so far but all I get is "Durations can't be compared to other data types". I'm guessing it's because in the IF formula I have specified 35 and with this being a number and not a time it's giving the error. Can anyone help me solve this please :-)
    Thanks

    Crofty,
    You should be able to get the "35h" to work. It's so much handier than the DURATION function that it would be worth it to learn to use the direct notation.
    When you tried using "35h", what didn't work. Did you get an error message, a wrong result?
    Jerry

  • How do you get to greater than, less than symbols ( , )

    Trying to find these symbols on keyboard. Anybody know if they are available?
    Ken

    If using the Samsung keyboard:  press Sym, then press 1/2
    If using the Swype keyboard:  press 123 (in lower left-hand corner), then press the shift key (looks like a 1 in a box next to a 2, it's just above the Swype key)

  • I am doing data acquisition using the 6024E board, how can I acquire voltages greater than 10V

    I am doing data acquisition on MATLAB using the 6024E board, the maximun range I can see is <-10V,-10V>, can I increase this limit to be able to acquire higher voltages

    Without knowing the details of the signal you are acquiring (output Z etc), I can only offer an old suggestion.
    A voltage divider may be usefull. This will work if your application can tolerate some external resistors.
    Ask if you want details.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to use (greater than) in web services call

    Hello, I am trying to query a set of assets where the external unique ID is greater than 400,000. My existing code looks like
    qryIn.ListOfAsset(0).ExternalSystemId = ">'400000'"
    However, using this will return any asset record starting with a 5 or above as far as I can tell, I assume b/c it is comparing string data due to the single quotes infering data of type text (string). Is it possible to use comparison operators with numeric data correctly?
    I posed this question to support and received the below answer:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <soap:Body> <AssetWS_AssetQueryPage_Input xmlns="urn:crmondemand/ws/asset/"> <ListOfAsset xmlns="urn:/crmondemand/xml/asset"> <Asset> <AssetId /> <PurchaseDate/> <OwnerAccountId /> <ExternalSystemId>&gt; '400000'</ExternalSystemId> </Asset> </ListOfAsset> </AssetWS_AssetQueryPage_Input> </soap:Body> </soap:Envelope>
    Basically, instructing me to use &gt. I'm doing coding in .NET visual studio and not using the XML as above. However, I did try the following:
    qryIn.ListOfAsset(0).ExternalSystemId = "&gt;'400000'" which returned an error in the compiler.
    Any help would be appreciated. Thanks.

    Thanks for the reply. I would assume "external system id" is an integer, but, I will test on a custom field that I now is of type integer.
    Could you take your same code and use a non-zero value for the operand? For example, could you try
    objAccQryParam.ListOfAccount[0].CustomInteger0 = ">= '10'"; and let me know if that returns values that are greater than or equal to 10. Using a two digit number is important. Assuming you have data greater than 10.
    Thanks!

  • Greater Than Function in Script Logic File

    BPC Experts,
    I've got a pretty simple script logic file to calculate salary amounts, overtime, etc.  The purpose of this logic is for forecasting.  I have two referenced dimensions, TIME and SCENARIO, where TIME.MONTHNUM is equal to its relative month number (eg: Jan monthnum = 1), and SCENARIO.CURRMONTH is equal to the relative amount of actual months data, (eg Jan currmonth = 0, Feb = 1) because if you are completing a February forecast, you have one month of actual.
    The ACTUAL scenario is never touched, but after a month closes, we copy the ACTUAL data to, for example, FEB_FCST.  So, after January closes, its actuals are copied to the FEB_FCST scenario so we can complete an actual/forecast (one month actual, 11 months forecast).
    Currently, the default logic skips anything in the ACTUAL scenario, by stating "*WHEN SCENARIO, *IS <> "ACTUAL" yada yada yada.
    However, when the default logic runs on the forecast scenarios, it takes the same inputs from the months that are copied over from the ACTUAL scenario and adds to the original amount, essentially doubling the value--ultimately causing an incorrect actuals number in the forecast scenario.
    My script right now looks like this:
    *XDIM_MEMBERSET DATASRC=INPUT
    *XDIM_MEMBERSET PRODUCT=NO_PRODUCT
    *XDIM_MEMBERSET SHIFT=NO_SHIFTS
    *XDIM_MEMBERSET MEASURES=PERIODIC
    *WHEN SCENARIO
    *IS <> "ACTUAL"
         *WHEN TIME.MONTHNUM
         *IS > SCENARIO.CURRENTMNTH
              *WHEN ACCOUNT
              *IS "SALARIED_MANPOWER"
                   *REC(EXPRESSION=((([ACCOUNT].[SALARIED_AVG_WAGE] * (1 + [ACCOUNT].[SALARY_TIMEAHALF]))* [ACCOUNT].[SALARIED_MANPOWER])),ACCOUNT="01100")
              *ENDWHEN
    *ENDWHEN
    *ENDWHEN
    *COMMIT
    When it hits line 9 (*IS > SCENARIO.CURRENTMNTH) during validation, it errors.  How can I use a "greater than" function to dictate whether or not a given scenario should run default logic on a specific month?
    If not, is there a different/better way to do it?
    Thank you!
    ABF

    Hi Alex
    Take this sample logic, check the properties in your Time dimension to trouble shoot your issue.
    *SELECT(%CAT_VAR%, "ID", CATEGORY, ID= PLAN_APRIL)
    *XDIM_MEMBERSET CATEGORY = ACTUAL, PLAN, %CAT_VAR%
    *SELECT(%CATMTH%, "STARTMTH", CATEGORY, ID= %CAT_VAR%)
    *SELECT(%ACT_PERIOD%, "ID", TIME, MONTHNUM < %CATMTH% AND  LEVEL = MONTH AND YEAR = 2010)
    *SELECT(%PLAN_PERIOD%, "ID", TIME, MONTHNUM >= %CATMTH% AND LEVEL = MONTH AND YEAR = 2010)
    *XDIM_MEMBERSET TIME= %ACT_PERIOD%
    *XDIM_MEMBERSET CATEGORY=ACTUAL
    *WHEN CATEGORY
    *IS ACTUAL
    *REC(EXPRESSION=%VALUE%, CATEGORY = %CAT_VAR%)
    *ENDWHEN
    *XDIM_MEMBERSET TIME= %PLAN_PERIOD%
    *XDIM_MEMBERSET CATEGORY=PLAN
    *WHEN CATEGORY
    *IS PLAN
    *REC(EXPRESSION=%VALUE%, CATEGORY = %CAT_VAR%)
    *ENDWHEN
    Thanks

  • How to write a job

    The functionality of job to delete data for every one week or whenever it count reaches greater than 10,000 and how should we configure it
    Edited by: 812809 on Feb 24, 2011 3:30 AM

    hi there
    here in this procedure checks the data if the numbers of rows is greater than or equal to 10,000 then it will delete
    the table and also check on daily basis
    i am checking on the daily basis because if in the 6th day if data reaches more that 10000 then it should delete it
    create or replace procedure delete_date_jobs
       V_COUNT      NUMBER := 0;
       V_DATE       DATE := TO_DATE ('02/FEB/2011');
    BEGIN
       SELECT   COUNT (1) INTO V_COUNT FROM EMP;
       DBMS_OUTPUT.put_line (v_date);
       IF V_COUNT >= 10000
       THEN
          DELETE FROM   HITESH;
       ELSIF MOD (SYSDATE - V_DATE, 7) = 0
       THEN
          DELETE FROM   HITESH;
       END IF;
    EXCEPTION
       WHEN NO_DATA_FOUND
       THEN
          NULL;
    END delete_date_jobs;after that create a job which runs on daily basis
    BEGIN
      SYS.DBMS_JOB.REMOVE(277);
    COMMIT;
    END;
    DECLARE
      X NUMBER;
    BEGIN
      SYS.DBMS_JOB.SUBMIT
      ( job       => X
       ,what      => 'begin delete_date_jobs exception when no_data_found then null; end;'
       ,next_date => to_date('24/02/2011 18:05:07','dd/mm/yyyy hh24:mi:ss')
       ,interval  => 'SYSDATE+1'
       ,no_parse  => FALSE
      SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
    COMMIT;
    END;
    /regards
    Hitesh
    Edited by: Hitesh Nirkhey on Feb 24, 2011 6:50 PM

  • PO Quantity Greater Than SC Quantity?

    Hello Experts,
    I've created Local PO at SRM based on sourcing process, which came from SC. Somehow, I edited the quantity of PO greater than SC and SRM didn't throw error message. As we know, if we do the same thing at ECC (PR to PO) then error message will appear and tells us that the requirement has been ordered in full quantity.
    Is it how the standard SRM works, without quantity checking against already ordered item for related SC?
    Basically, we want to create PO from more than one bid.
    Appreciate your helps.
    Sincerely,
    Ted

    Hi Jason,
    Yes, it's obvious that we can change subsequent PO, including quantity. But the problem is how can the quantity be greater than the SC quantity? Beside, we can't control required quantity vs ordered quantity
    This will lead to ordering the unnecessary materials.
    Thanks,
    Ted
    Edited by: lastlegion on Nov 8, 2011 1:23 AM

Maybe you are looking for

  • My itunes doesn't recognize my iphone

    I have a Iphone 3Gs and a MacBook and they was working fine some weeks ago. Today they don't work properly. I erase itunes and download it again. Restore iphone, but didn't work. Can you help me.? Thanks for any help. Kind regards, Olga

  • Runtime Error every 3mins - SAPLBP_CENTRAL_PERSON or SWWDHEX

    HI, I hope somebody can help me here, here's my problem: When i checked the list of Runtime Errors (ST22), i found out that there is a RAISE_EXCEPTION error that occurs every 3 minutes. It started last week, though we didnt schedule any background jo

  • Table that store info about pages

    Hi, I would find the name of table (or view) that store information about PAGE. In particular, I would find the name and the display name of item (simple file, image, URL...) wich are contained in a page. Thank you in advanced

  • Unable to sync between iD and iC

    So, we bought this CC-solution for a year ago so that we would be able to actually use the cloud for something more than backup storing. We wanted to be able to create a workflow between writers and designers, where we could use assignments even if w

  • Implementing Rest/JSON Webservice

    Hello, I'm developing an app in iphone and want to use JSON webservice. Can anyone please guide me how to use json format with abap webservices or any document suggesting? Thanks in Advance