Can Software Automatically Create Tree Diagrams from Research Paper References?

AI Thread Summary
The discussion centers around the need for a tool or code that can generate tree diagrams to visualize relationships between research papers based on their references. The user has a collection of papers that reference each other across various topics and seeks a way to organize them visually, ideally by year or author. There is a consideration of using C++ for this purpose, though the user expresses uncertainty about needing to learn a new programming language. The conversation invites suggestions for existing software solutions or coding approaches that can facilitate the creation of these diagrams, emphasizing the importance of clarity in representing complex interconnections among the papers.
LLopes
Messages
4
Reaction score
0
Hello everyone!

Quick question, anyone know of any computer codes that will take in a long list of block data linked to other lists of block data and will create tree diagrams?

My specific problem is for documents (research papers) that reference other papers and so on.

If not, should I create on using C++ or something, haven't coded in C++ in a while (FORTRAN all the way baby.)
 
Technology news on Phys.org
Come on guys, help me out.
Am I going to have to learn a whole new language? Any commercial software out there?
Throw me a bone, here.
 
can you elaborate i have a hard time figuring out what you are asking
 
Well i have many papers that reference each other in several different topic areas that may or may not be linked together. I haven't read them all and as I read them I want to create links to other papers I have read or not read. So, for example.


Code:
   paper_g    <paper_h>  paper_i   <paper_j>
      \      /      \          \    \   /
      paper_a  paper_b        paper_c  paper_d         papper_e-<paper_f>
      \     /              \     /                  \    /
        topic 1          topic 2            topic 3

and so on where <> are papers I have not read but are of interest and are referenced by another paper in the sytem. I would like them also organized by year or by author.

Any other information you would like to know?\





THE SLASHES LOOK LIKE CRAP, BUT YOU GET THE IDEA.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...
Back
Top