Jump to content
You must now use your email address to sign in [click for more info] ×

anweid

Members
  • Posts

    164
  • Joined

  • Last visited

Posts posted by anweid

  1. My very strange solution to get wonderful references uses the possibilities of so-called OpenType features in font files:

    1. My figure text style uses automatic numbering starting with 'Figure ', my table numbering starts with 'Table '. In my cross-references, I don't want to see any of these words, but write my own ones.
    2. I therefore opened the font that I use for my document's body text in my font editor and equipped it with a new stylistic set 20, which contains the following OpenType instructions:
      feature ss20 {
        sub [F f]' i' g' u' r' e' space' by uni200B;
        sub [T t]' a' b' l' e' space' by uni200B;
      } ss20;
      This effectively replaces the words 'figure ', 'Figure ', 'table ' and 'Table ' by zero-width spaces.
    3. I created a new character style that just switches on this stylistic set, and told Publisher to use it as default for my number cross-references.
    4. Now the cross-references actually do contain all the default unwanted words 'Figure ' and 'Table ' as usual, but these are automatically made invisible by the font's stylistic set.

    This works well for me, but I'm sure that most people would not want to fiddle around with their fonts, so a solution by Serif would be much nicer, of course...

    Andreas Weidner

    ReferencesWithStylisticSet.png

  2. Over the weekend, I did a bit of fiddling with MikeTO's solutions. They work nicely, but seem to be not flexible enough for the scientific documents I'm used to:

    1. The referencing of invisible side notes was a surprise for me – I would never have had the idea to put side notes into pinned frames. It works well, but it seems to only work for one type of numbered object inside the document: Images or tables. I have not found a solution to create two independent counters using side notes, namely one for images and another for tables. My colleagues would even need a third one for equations. But probably I overlooked something...
    2. I did not understand the solution that formats the 'f' using all caps – Mike wrote to 'select the f', but I simply can't do that: In the text style dialog, I can select the f in the numbering options, but formatting just the f is not possible there, and in the resulting numbered paragraph, I cannot select any characters from the automatic numbering. But independent of this, it appears that in case I got it to work, now all cross-references would appear in lowercase, which is not what I want. I would like to have the choice how each of the references appears, depending on the surrounding text.
    3. If I'm not mistaken, I currently see two solutions for this problem: Either, referencing only the number (without prefixes or postfixes) is made possible by Serif like I proposed above, or self-defined automatic counters are made possible (that's how Word works since 30 years).

    As a matter of fact, I now have found a solution that works very well for me, but it's very strange, and I doubt that too many people would want to adopt it. Mike involuntarily put that idea into my head with his last post, and I'll bring it up in my next post in a few minutes...

    Andreas Weidner

  3. Thanks for the sophisticated solution – I'll look into it over the weekend. It definitely gives me a strange déjà-vu: >30 years ago, I had to do very similar contructs to persuade Word for Windows 1.x to do the same job (with so-called auto-numbering fields). The only software that I ever found that could do the non-capital referencing properly out-of-the-box was InDesign. Let's hope that Serif hears my plea...

    Andreas Weidner

  4. 4 hours ago, MikeTO said:

    How are you numbering your figures?

    With the automatic paragraph numbering (see picture) – I'm not aware of any other possibilities. Since numbered paragraphs always begin with the numbering, and the cursor can not be put before this numbering, it is not possible to manually add the word 'Figure ' in the resulting paragraph before the automatic number. Therefore, the word 'Figure ' must be included in the paragraph numbering scheme.

    4 hours ago, MikeTO said:

    There might be a way to cross-reference it in such a way as to grab just the number

    I already tried this, but without success. On the way, I happened to find what I think is a bug in the cross-referencing, which I will report separately later if it still occurs...

    3 hours ago, walt.farrell said:

    Most books I've seen would use the capitalized form in the cross-references

    Yes, that would also be possible, but I dislike it, because it looks like a simple typo. Currently impossible constructs with plurals ('see figures 1 and 2' or 'see figures 1-4') would look even worse (like 'see Figure 1 and Figure 2' or 'See Figure 1 to Figure 4'). If Serif would just add the possibility to only cross-reference the automatic number without prefix or suffix, it would leave all options open.
    (I myself would also never add the word 'page ' into a cross-reference itself, but only reference its page number and then manually enter 'page ', 'Page ', 'pages ' or whatever is needed in the current context)

    Andreas Weidner

    ParagraphNumbering.png

  5. While writing my latest topic (and this one, too), the topic editor nearly drove me crazy, because it apparently does an extremely bad spell checking, complaining about nearly every word with different types of red curly underlines (see attachments). I haven't found any possibility to switch this off. Months ago, such excessive marking did not happen. Please revert to the old nice behaviour – the new one makes it really hard to read through my own post. Thanks.

    Andreas Weidner

    SpellChecker2.png

    SpellChecker1.png

  6. Publisher 2.2.1 (Windows) is finally equipped with a cross-referencing tool, which I had eagerly awaited – thanks. Unfortunately, the type of referencing turned out to be unusable for the technical documents I write:

    1. In technical documentation, very often all tables and images are numbered, using corresponding prefixes like 'Table' or 'Figure' (see example screenshot).
    2. When cross-referencing them, the full text is never used, but just the figure number and its page.
    3. The page can very easily and nicely be referenced – wonderful.
    4. The number can not be decently referenced, because Publisher always also includes the prefix, which is nearly always unwanted: The only possible referencing I can do now is to start sentence with the reference, like 'Figure 3 on page 4 shows...'. This is because the prefix always begins with a capital letter – references like 'this is shown in figure 3' or 'consult figures 3 and 4' can therefore not be created. Unfortunately, I very seldom want to start a sentence with a reference, but nearly always put it somewhere in the middle or the end of it.
    5. If I'm mistaken and there is the possibility to get rid of the prefix in the reference, please tell me how – I couldn't find it.
    6. If I'm not mistaken, please add some option to show only the number, without any additional text before or after it – thanks.

    Andreas Weidner

    ShortCircuit.png

  7. Gosh! What an... erm... interesting grid...

    I should try to find my old diploma thesis source code from 1992. For a control loop simulator, I had to calculate decent ruler subdivisions for technical diagrams, which is exactly the same problem. The solution was astonishingly complicated (several hundred lines of code), partly because I had to ensure that floating-point number round-off errors didn't mess up the nice scaling. Therefore: Yes, the rulers that we users would like to see seem to be quite simple, but the maths behind them is quite tricky. But of course all geometric algorithms like curve intersection etc. are much more advanced, and Serif managed to make those work really nicely, so creating nice-looking rulers should be a breeze for them (if even I myself managed, real programmers should do the same much better and quicker)...

    Andreas Weidner

  8. 7 hours ago, MikeTO said:

    Hi, I can see your pin behaviour issue (#2) without, um, issues. It appears to be a bug with using pinned, wrapped objects in text frames that have Vertical Position set to Centre Align. Here's a test document and screen recording.

    Aaah – wonderful! I wondered why bug #2 only appeared in that frame - the vertical centering is the problem! Since this problem appears to be reproducable, the developers will be able to debug it more easily. Thanks.

    After debugging that, bug #3 remains: Why does everybody see the image resource as 'linked' (and without image) when the original document tells me it is 'embedded'? Just for fun, I downloaded the above original file again, opened it in Publisher 2.04, and the image appeared, including the 'embedded' info (see screenshot, with the German word 'eingebettet' meaning 'embedded').

    Andreas Weidner

    EmbeddedFile.png

  9. Oooooh, what a pity! I can also not read your file, but get the same error message. With one document of mine (from my post 'weird pin behaviour'), several other people got this error message, too. Today I tried to load that old document of mine into Publisher version 2.04 on a second PC, and it worked properly. Therefore, I thought this bug was already fixed in the meantime, but apparently not. As a reminder:

    1. I myself could always properly read my document on the PC on which I originally wrote it.
    2. Other people could not read that document, but received the above error message instead (directly after version 2.0 came out, and no other was available).

    This bug is the reason why I currently do not use Publisher 2 anymore – I always fear that any document I write will be screwed up, so that I cannot properly load it anymore in the future. Writing and loading files should be the most reliable features in any software, but – alas! – that's not the case with Publisher anymore. I'm depressed...

    Andreas Weidner

  10. This bug might be already corrected in Publisher 2.04, but I cannot check this properly. The following happened using Publisher versions 1.x, 2.0, 2.03 and 2.04:

    1. I created a document with version 1.x using paragraph styles with horizontal lines above and below the paragraph.
    2. Loading this document into version 2.0 (and afterwards saving it) worked nicely.
    3. Loading this document into version 2.03 messed up all lines below paragraphs: The distance that defines the vertical position was always inverted (positive instead of negative and vice versa). Lines above paragraphs worked properly. I don't know about left or right lines, because I don't use them. I changed all signs manually, saved the document and could properly load it again afterwards.
    4. Loading this document into version 2.04 again messed up all lines below paragraphs, so I had to invert all distances again.

    It might be that this bug appeared in version 2.03, and 2.04 already corrected it (but kept the messed-up values from 2.03), but it also might be that every 2.x version changes signs for documents from any previous 2.x version. Since I don't keep more than one 2.x version on my PC, I cannot repeat this behaviour.

    Andreas Weidner

  11. After several weeks, I can now add some additional information. The document uploaded in my original post from November 13th is the root of at least three apparently unrelated bugs in Publisher 2:

    1. The already known problem that the document cannot be read by anybody but myself using the PC on which it was originally created (the mysterious message 'the file includes features from a later version of Affinity'). This bug is apparently fixed in Publisher 2.04 – at least I can now open the document on a different machine. Fine.
    2. The bug with the weird pin behaviour still appears with version 2.04 exactly as described above. Unfortunately, probably nobody else will be able to reproduce it, because I can only see it with the PC on which the original document was written (again). The pin bug cannot be seen on a second test installation, because of another  bug no. 3:
    3. The original document posted by me contains an embedded picture. Downloading this document from the original post above onto the PC on which I originally created it correctly shows the picture (the original picture still resides on my hard disk), and also properly shows its state as 'embedded'. When downloading to a different machine, Publisher complains about the missing picture (it's true that the original picture is missing, but the picture was embedded), shows its state as 'linked' (which is wrong) and does not display anything (which is a pity). So either Publisher 2.0 didn't properly embed the picture, or Publisher 2.04 doesn't properly use the embedded picture if the original picture is missing.

    Therefore, in order to be able to reproduce the original bug 2, it might be necessary to first get rid of bug 3, so that the document can be correctly opened on a different machine than my own one. Let's hope for the best...

    Andreas Weidner

  12. In order to solve a problem from another post, I tried to install Publisher 2 in test mode on a different PC than the one I already installed and activated it on. This creates confusion due to the following problems:

    • I can only download the test version by logging into my Affinity account (or create a new one). Which I did.
    • After downloading, the installation works as usual.
    • At first start, Publisher asks me for a 'License Activation', which can only be done with my Affinity credentials. Without those credentials, I cannot use the software.

    The problem is: I do not want to activate any license, because

    1. my license at home is already activated, and it should stay activated there,
    2. I don't want to keep Publisher on that second PC, but just install it for a few days for testing purposes, and
    3. I have no idea what will happen if I try to activate the license for that test version: Will it complain, because I already activated a copy with my credentials, or will it refuse activation because of that, or will it even deactivate my original installation at home?

    This seems very unclear to me. The same problem will appear if I want to administer more than one copy of any Affinity program using only one set of credentials.

    It would be nice if

    • either the above points could be cleared up by stating what will happen under what circumstances,
    • or at least by making it possible to start Publisher in test mode without entering credentials.

    I take it for granted that the same would also happen with all other Affinity programs, but I haven't checked.

    Andreas Weidner

  13. The problematic document was created the following way:

    1. I started to write it some years ago with Publisher version 1.x. The original is around 50 pages long and contains lots of pictures and pins, using several purchased fonts.
    2. I downloaded Publisher 2 from the Affinity website and just double-clicked the MSIX file, which installed the app (I think no install options were asked). I don't know what a 'standard MSIX install process' is, because prior to the Affinities, I never had MSIX packages before.
    3. I now have version 1 and version 2 on my PC, both of them running in parallel (apparently) without problems.
    4. The original 50-page file opened in Publisher 2 without problems, but the 'pin bug', as already experienced with version 1.x, still persisted with version 2, so I thought I should report it finally.
    5. Since the original document was too complex to upload, I took Publisher 2 to throw away all pictures, all pins except the problematic one, nearly all text styles, changed the font to Times New Roman and uploaded it as above.

    I will try to recreate a new document out of the old one a second time in the next days, and try to create a new Affinity test installation on a different PC...

    Andreas Weidner

  14. 18 minutes ago, walt.farrell said:

    Searching for your username would not find posts you wrote. It would only find posts in which users referenced you by name.

    Surprise! For years, I always searched for my user name, and for years, it always worked. Not anymore, apparently...

    20 minutes ago, walt.farrell said:

    Click on your account icon in the upper right of the screen (assuming you're on a desktop browser).

    Thanks – I didn't know this. I always clicked on my account name, where no such option exists. I always assumed that clicking on the name would be the same as clicking on the icon. Now I know that it's not, and I my assumptions were wrong these past five (or so) years. Oh well...

    9 minutes ago, Arakel said:

    (In Germany it's time to go to bed, so: Good night!)

    Yes. Sweet dreams to you all – thanks.

    Andreas Weidner

  15. Around two weeks ago, I created some bug report posts. Today, I wanted to take a look at whether or not anything has happened in the meantime, so I searched for my user name 'anweid' in all forums. The result was only two recent posts (see 'searchresults.png'), even though I was sure I wrote more than that. Looking through the forum manually resulted in at least two other posts (see 'notfound1.png' and 'notfound2.png'), which I did write, but were not included in the results. When searching for words from their headings, these are found properly, but often I simply cannot remember what heading I chose weeks ago.

    It would be nicer if a search for a user name showed all relevant results (as was the case previously, but I don't know how previously).

    Additionally, this might be the wrong forum for such a report, but I couldn't find any other forum where it fitted better...

    Andreas Weidner

    notfound2.png

    notfound1.png

    searchresults.png

  16. Hello NathanC,

    the file has not become corrupted during upload, because I can re-download and open it without problems. My original file and the one downloaded from above are binary identical. If you cannot open that file at all, then all my alarm bells immediately ring excessively, because this might mean that loading and saving of files have become unreliable in the new version, which would be a total meltdown...

    Anyway, find attached a new file, which consists of the above original, but 'Saved as' with a new name. Both files are not binary identical, but on my PC I can definitely open both of them, and the problem also happens with both.

    Andreas Weidner

    PinProblem-new.afpub

  17. Affinity Designer 2.0.0 (Windows) shows German texts in the form constructor's status bar (image attached) that can impossibly be understood without re-translating them to English and having a good laugh:

    1. The text 'Zurückgeben=Form erstellen' surely should stand for 'Return=Create form', but what it actually means is 'Give back=Create form' (I might borrow some money from somebody who hopes that I return it someday). Correct German would be 'Eingabetaste=Form erstellen' (which contains the official name of the 'Return' key), or 'Eingabe=Form erstellen' (which omits the word for 'key', but is still as understandable as the English original, which also omits the word 'key').
    2. The German text 'Escape=Ausgewählte Flächen erneut auswählen' means 'Escape=Select selected areas again', which confuses me (why would I want to reselect already selected areas?). Even re-translating to English is no help here, but hitting 'Escape' helps: What you apparently mean is 'Escape=Reselect areas', which could be translated as 'Escape=Flächen neu auswählen' or just 'Escape=Neu auswählen' (which stands for 'Newly select', omitting the word 'areas').

    Andreas Weidner

    statusbartext.png

  18. With the attached document (which is a very condensed version of a file created with version 1), Affinity publisher 2.0.0 for Windows behaves as follows:

    1. The creation of footnotes for the original document worked.
    2. Changing the appearance of footnotes unfortunately often ends in crashes, so that Publisher just quits without any error message.
    3. In the attached picture, trying to change any of the red-framed settings immediately and reliably forces a program crash.
    4. In the original document (non-abridged, 30 pages, lots of text styles and images), some of these settings could be changed without crashes (e.g., colour, thickness and length of the dividing line).
    5. When trying the same with a new dummy document created with version 2, no such crashes appeared.

    Andreas Weidner

    notes.png

    EarthGroundAndEverything2.afpub

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.