I would like to add comments in the output viewer with more than 60 characters. "Title" and "subtitle" allow only a limited number of characters (60). I could use "Subtitle" repeatedly, but try to avoid it.
Frank
Dr. Frank Gaeth
|
IIRC, there's a TEXT extension commands that allows you to insert text blocks in your output. You could insert the entire Webster's Dictionary if you like, e.g. more than 60 chars. Cheers!!Albert-Jan ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ All right, but apart from the sanitation, the medicine, education, wine, public order, irrigation, roads, a fresh water system, and public health, what have the Romans ever done for us? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From: drfg2008 <[hidden email]> To: [hidden email] Sent: Thu, June 23, 2011 9:33:52 AM Subject: [SPSSX-L] Subtitle with more than 60 characters I would like to add comments in the output viewer with more than 60 characters. "Title" and "subtitle" allow only a limited number of characters (60). I could use "Subtitle" repeatedly, but try to avoid it. Frank ----- Dr. Frank Gaeth FU-Berlin -- View this message in context: http://spssx-discussion.1045642.n5.nabble.com/Subtitle-with-more-than-60-characters-tp4516592p4516592.html Sent from the SPSSX Discussion mailing list archive at Nabble.com. ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
well, I hope so, but can't find the command syntax.
Dr. Frank Gaeth
|
In reply to this post by drfg2008
Try: COMMENT ' <your text> ' . You might need to put a + at the beginning of continuation lines -----Original Message----- I would like to add comments in the output viewer with more than 60 characters. "Title" and "subtitle" allow only a limited number of characters (60). I could use "Subtitle" repeatedly, but try to avoid it. Frank ----- Dr. Frank Gaeth FU-Berlin -- View this message in context: http://spssx-discussion.1045642.n5.nabble.com/Subtitle-with-more-than-60-characters-tp4516592p4516592.html Sent from the SPSSX Discussion mailing list archive at Nabble.com. ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
comment works like the *
the text does not appear in the viewer.
Dr. Frank Gaeth
|
In reply to this post by John F Hall
But isn't that just another way of commenting syntax, for many people often use asterisks?
Another option might be the ECHO command. Not sure about the max number of chars though. Cheers!!Albert-Jan ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ All right, but apart from the sanitation, the medicine, education, wine, public order, irrigation, roads, a fresh water system, and public health, what have the Romans ever done for us? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From: John F Hall <[hidden email]> To: [hidden email] Sent: Thu, June 23, 2011 1:04:06 PM Subject: Re: [SPSSX-L] Subtitle with more than 60 characters Try:
COMMENT ' <your text> ' .
You might need to put a + at the beginning of continuation lines
-----Original Message-----
I would like to add comments in the output viewer with more than 60 characters. "Title" and "subtitle" allow only a limited number of characters (60). I could use "Subtitle" repeatedly, but try to avoid it.
Frank
----- Dr. Frank Gaeth FU-Berlin
-- View this message in context: http://spssx-discussion.1045642.n5.nabble.com/Subtitle-with-more-than-60-characters-tp4516592p4516592.html Sent from the SPSSX Discussion mailing list archive at Nabble.com.
===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
ECHO accepts max. 60 characters, like subtitle ' '.
it seems there is no command for more than 60 characters to appear in the viewer (?) Frank
Dr. Frank Gaeth
|
In reply to this post by drfg2008
Comment text appears in the log block,
where it is not very obvious.
The TEXT extension command is available from the SPSS Community site (www.ibm.com/developerworks/spssdevcentral). Look in the extension commands collection. It produces a separate text block in the Viewer and can be any size. Jon Peck Senior Software Engineer, IBM [hidden email] new phone: 720-342-5621 From: drfg2008 <[hidden email]> To: [hidden email] Date: 06/23/2011 05:16 AM Subject: Re: [SPSSX-L] Subtitle with more than 60 characters Sent by: "SPSSX(r) Discussion" <[hidden email]> comment works like the * the text does not appear in the viewer. ----- Dr. Frank Gaeth FU-Berlin -- View this message in context: http://spssx-discussion.1045642.n5.nabble.com/Subtitle-with-more-than-60-characters-tp4516592p4517106.html Sent from the SPSSX Discussion mailing list archive at Nabble.com. ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
Ok, found the solution:
- I first missed the point wit "TEXT". TEXT "this is the text this is the text this is the text "+ "this is the text this is the text this is the text "+ "this is the text this is the text this is the text ." /OUTLINE HEADING="Hypothese 1" TITLE="Comment". Thanks! https://www.ibm.com/developerworks/mydeveloperworks/files/app?lang=en#/person/270002VCWN/file/d1d4852e-646f-45e1-913e-265ab76c080a
Dr. Frank Gaeth
|
Note that it is not necessary - or even
a good idea - to concatenate the strings with the +. If you do that,
you are limited to the maximum Statistics literal length, and the text
will all be run together.
If you just specify a set of quoted strings, each will appear on a separate line, and there is no limit on the length. Regards, Jon Peck Senior Software Engineer, IBM [hidden email] new phone: 720-342-5621 From: drfg2008 <[hidden email]> To: [hidden email] Date: 06/23/2011 07:33 AM Subject: Re: [SPSSX-L] Subtitle with more than 60 characters Sent by: "SPSSX(r) Discussion" <[hidden email]> Ok, found the solution: - I first missed the point wit "TEXT". TEXT "this is the text this is the text this is the text "+ "this is the text this is the text this is the text "+ "this is the text this is the text this is the text ." /OUTLINE HEADING="Hypothese 1" TITLE="Comment". Thanks! https://www.ibm.com/developerworks/mydeveloperworks/files/app?lang=en#/person/270002VCWN/file/d1d4852e-646f-45e1-913e-265ab76c080a ----- Dr. Frank Gaeth FU-Berlin -- View this message in context: http://spssx-discussion.1045642.n5.nabble.com/Subtitle-with-more-than-60-characters-tp4516592p4517456.html Sent from the SPSSX Discussion mailing list archive at Nabble.com. ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
Free forum by Nabble | Edit this page |