Announcement

Collapse
No announcement yet.

Richard Stallman Announces GNU C Language Reference Manual

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #11
    Originally posted by Mahboi View Post
    Can I show my age and ask: wtf is a Texi file?
    Texinfo. It's FSF's adaptation of the TeX typesetting language for making hyperlinked reference manuals. You can think of it as their attempt to supersede man pages. Its primary client was meant to be the info browser, but I think its traction was mostly limited to Emacs users.

    These days, the most popular way to view Texinfo docs is via HTML. If you've ever viewed the HTML docs for tools like grep or gcc, you've been looking at docs authored in Texinfo.

    Separately, some industry players (Sun, and I forget who else) created a XML-based successor to the legacy manpage formats, based on XML Docbook. It's more structured and semantically rich than Texinfo, but I say that having never written or edited a single line of a .texi file (though I did write more than enough LATEX).

    Originally posted by Mahboi View Post
    Also if you want to set a reference manual in 2022, is it really pertinent to use formats that probably haven't seen any light since the 1980s?
    Well, it's a text-based markup language. Those work a lot better in source control systems than binary files edited in WYSIWYG editors.

    Comment


    • #12
      Originally posted by bug77 View Post
      Not being a C programmer myself, I have to ask: is a GNU C manual a good thing? On one hand, I believe ANSI C should be everybody's target.
      Fortunately, recent ISO C revisions have picked up a lot of the GNU extensions. I looked at this when the kernel moved to C11, and the practical implications were pretty small because the kernel doesn't use the C library and most of the differences between C89 and C11 they were already getting via C89 + GNU extensions.

      I tend to agree with you, though. If I'm writing C, I would wrap any GNU-specific extensions in macros that I can redefine for other compilers. In C++, I tend to use strict ISO compliance.

      Comment


      • #13
        Originally posted by ClosedSource View Post
        Can someone post a compiled pdf somewhere?
        (The work of Trevis Rothwell and Nelson Beebe has been assigned or licensed to the FSF.). GNU C Language Intro and Reference Manu. Richard Stallman and Trevis Rothwell plus Nelson Beebe on floating point. Copyright c 2022 Richard Stallman and Free Software Foundation, Inc. (The work of Trevis ...

        Comment


        • #14
          Originally posted by Displacer View Post
          Thank you.

          Comment


          • #15
            If you hadn't said who'd written this, I'd have guessed.

            Good choices include Lisp, Scheme…

            Comment


            • #16
              Originally posted by Mahboi View Post
              Can I show my age and ask: wtf is a Texi file?

              Also if you want to set a reference manual in 2022, is it really pertinent to use formats that probably haven't seen any light since the 1980s?
              Not so much your age as ignorance and lack of ability to search before speaking. Texinfo files (and perhaps more commonly LaTeX) are just source files you use to generate final typeset output... they are still in common use for producing technical and research papers.
              Last edited by cb88; 06 September 2022, 11:46 AM.

              Comment


              • #17
                Originally posted by Chewi View Post
                If you hadn't said who'd written this, I'd have guessed.
                Heh. I bet it did pain him slightly to have to tag Java on the end

                Comment


                • #18
                  Originally posted by ClosedSource View Post

                  Thank you.
                  There were some compilation warnings (about cross references and some more) so I am not sure this compilation is 100% correct (table of contents is absent for example).

                  Comment


                  • #19
                    Every time I hear someone mentioning the C language. I remember of this scene from the Golden Boy anime (barely safe for work):

                    Comment


                    • #20
                      Originally posted by Displacer View Post
                      There were some compilation warnings (about cross references and some more) so I am not sure this compilation is 100% correct (table of contents is absent for example).
                      LOL. There's always some "badness" when you're processing TeX files!


                      This is more a comment about TeX than Texinfo, but for all the praise people seem to heap on TeX, there are formatting errors I've seen in papers and even a couple printed books that only seem to happen with TeX. It'll be like one stray line that juts out into the margin or something. Very rare, but very noticeable when it happens. Even less common, sometimes the vertical alignment will be way off, with one line overlapping another.

                      Another thing I find funny about LaTeX is that the cross-references in any doc of a substantial length never totally converged. This would lead to references containing wrong page numbers, for instance. Perhaps that's why many books seem to avoid explicit page number references altogether. Anyway, I set my LaTeX build script to stop, if the doc still hadn't converged after 5 iterations.
                      Last edited by coder; 06 September 2022, 12:31 PM.

                      Comment

                      Working...
                      X