<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">On 11/2/19 12:04 PM, David Mertens
      wrote:<br>
    </div>
    <blockquote type="cite"
cite="mid:CAC4-GYeA=y3-As1Q8NKrznRiKBxv=sUU6CMw-P6Hn=kneY05Rg@mail.gmail.com">
      <meta http-equiv="content-type" content="text/html; charset=UTF-8">
      <div dir="ltr">
        <div>Hello everyone,</div>
        <div><br>
        </div>
        <div>After years of using LyX for research notebooks, I find
          myself these days working with sets of documents much like I
          have sets of tabs in my browser. I would really, really like
          to be able to open up sets of documents just like I can open
          up sets of tabs in a browser, and I would also really like to
          be able to bookmark documents much like I can bookmark web
          pages. Finally, it would be really nice if I could embed LyX
          links to other documents to refer to previous calculations or
          experimental results, so that I could click on it and LyX
          would open the document in a new tab. This would really,
          really facilitate my scholarly work.</div>
        <div><br>
        </div>
        <div>Apart from the bookmarking, most of these are "solved" by
          opening multiple LyX sessions with the tabs I need, then never
          restarting my laptop for weeks on end. However, when my laptop
          inadvertently loses power, all of that "state" is lost and I
          have to recreate it from scratch.<br>
        </div>
        <div><br>
        </div>
        <div>I have looked into implementing some of these ideas with
          lyxpipe programming, but as I said I use multiple LyX sessions
          for different kinds of work: one research project, another
          research project, one class, and another class all need their
          own tab sets, so they go in different sessions. lyxpipe can
          only talk with the first LyX process that starts.<br>
        </div>
        <div><br>
        </div>
        <div>As far as I can tell, LyX does not have any of these
          capabilities and lyxpipe is not the way to implement them. Am
          I wrong? If I wanted to implement them, what is the most
          sensible way to do so? Is there an extension mechanism for
          this kind of thing besides lyxpipe? Finally, what are the
          tools that others use to organize large collections of
          notebook-ish files?</div>
        <div><br>
        </div>
        <div>Thanks!</div>
        <div>David</div>
        <div><br>
        </div>
        <div>P.S. I am not (yet) subscribed to the user list, so I'd
          appreciate if replies included my email address explicitly.
          Thanks!<br>
        </div>
        <br>
        <div>-- <br>
          <div dir="ltr" class="gmail_signature"
            data-smartmail="gmail_signature">
            <div dir="ltr">
              <div>
                <div dir="ltr">
                  <div>
                    <div dir="ltr">
                      <div>
                        <div dir="ltr">
                          <div>
                            <div dir="ltr">
                              <div>
                                <div dir="ltr">
                                  <div>
                                    <div dir="ltr">
                                      <div>
                                        <div>
                                          <div><b>David Mertens</b><br>
                                            Assistant Professor of
                                            Physics<br>
                                            727.864.8521</div>
                                          <div><br>
                                          </div>
                                          <div> Office Hours can be made
                                            by appointment within the
                                            following time blocks:</div>
                                          <div>
                                            <ul>
                                              <li><span>Tuesday 11:30
                                                  a.m. to 4:00 p.m., MPC
                                                  213</span></li>
                                              <li><span>Thursday 11:30
                                                  a.m. to 2:00 p.m., MPC
                                                  107</span></li>
                                              <li><span>Friday 1:00 p.m.
                                                  to 2:00 p.m., MPC 107<br>
                                                </span></li>
                                            </ul>
                                          </div>
                                          <div><br>
                                            <a
                                              href="http://www.eckerd.edu"
                                              target="_blank"
                                              moz-do-not-send="true">Eckerd
                                              College</a><br>
                                            4200 54th Avenue South<br>
                                            St. Petersburg, Florida
                                            33711<br>
                                            <img alt="Eckerd College
                                              logo"
                                              src="https://s3.amazonaws.com/signature-email-ec/eckerd-shell-logo.png"
                                              moz-do-not-send="true"
                                              width="200" height="84"></div>
                                        </div>
                                      </div>
                                    </div>
                                  </div>
                                </div>
                              </div>
                            </div>
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
    </blockquote>
    At least part of this is fairly easy to implement.<br>
    <br>
    Opening sets of documents: You can set up a one-line batch file to
    open a particular bunch of documents. Omitting the path info for
    brevity, "lyx file1.lyx file2.lyx ..." will open all the files
    listed in one LyX window. Similarly, "lyx *.lyx" will open all the
    .lyx files in the directory where the command is being run (at least
    on Linux, but I imagine also on MacOS and Windows).<br>
    <br>
    Bookmarks: LyX lets you open files from a list of recently opened
    ones. If that's not sufficient, one possibility is to create a
    folder (directory) someplace for "bookmarks". In that folder, put a
    link to each file you would like to bookmark. (On Linux, this is
    known as a symlink. Windows and, I assume, MacOS also support
    symlinks.) You can optionally go to Tools > Preferences >
    Paths and change your "Working directory" path to that folder, which
    means LyX will always default to that folder when you are opening a
    file. (You can still navigate to other documents using the file
    chooser.)<br>
    <br>
    Paul<br>
    <br>
  </body>
</html>