CTAN Comprehensive TeX Archive Network

Directory macros/latex/contrib/prisma-flow-diagram

README.md

prisma-flow-diagram Package

This package provides an abstraction for creating PRISMA 2009 flow diagrams in . It simplifies the process of building these diagrams by providing intuitive commands while maintaining full compatibility with TikZ.Example

Installation

  1. Copy prisma-flow-diagram.sty into the same folder as your .tex document.
  2. Include the package in your document preamble:
  3. \usepackage{prisma-flow-diagram}
    

Usage

The package provides the following commands:

Commands

  1. \prismaflowstart Starts the PRISMA flow diagram. Must be called before defining any nodes or labels.
  1. \prismaflownode{<id>}{<position>}{<text>}{<arrow source>} Adds a node to the diagram.
    • <id>: A unique identifier for the node.
    • <position>: Specifies the node's position relative to another node. For example, below=of tc.
    • <text>: The text content of the node.
    • <arrow source>: The ID of the source node for an arrow. Leave blank ({}) for no arrow.
  1. \prismalabel{<size>}{<position>}{<text>} Adds a vertical label to the left of the diagram.
    • <size>: Size of the label box, typically 1.3*\mh.
    • <position>: Position relative to a node. For example, n1a.west.
    • <text>: Text content of the label.
  1. \prismaflowarrow{<source>}{<destination>} Manually connects two nodes with an arrow.
    • <source>: The ID of the source node.
    • <destination>: The ID of the destination node.
  1. \prismaflowend Ends the PRISMA flow diagram.

Example

Below is a full example of how to use the package:

\documentclass{article}
\usepackage{prisma-flow-diagram}

\begin{document}

\begin{figure}[H]
\resizebox{\textwidth}{!}{
\prismaflowstart

% Nodes at the top
\prismaflownode{n1a}{left=of tc}{Records identified through database searching (n = 251)}{};
\prismaflownode{n1b}{right=of tc}{Additional records identified through other sources (n = 0)}{};
\prismaflownode{n2}{below=of tc |- n1a.south}{Records after duplicates removed (n = 41)}{n1a};
\prismaflowarrow{n1b}{n2};

% Screening Phase
\prismaflownode{n3}{below=of n2}{Records screened (n = 210)}{n2};
\prismaflownode{n3r}{right=of n3}{Records excluded (n = 175)}{};
\prismaflowarrow{n3}{n3r};

% Eligibility Phase
\prismaflownode{n4}{below=of n3}{Full-text articles assessed for eligibility (n = 35)}{n3};
\prismaflownode{n4r}{right=of n4}{Full-text articles excluded, with reasons (n = 4) \\ - Not Relevant (n = 3) \\ - Not Open/Available paper (n = 2)}{};
\prismaflowarrow{n4}{n4r};

% Inclusion Phase
\prismaflownode{n5}{below=of n4}{Studies included in qualitative synthesis (n = 30)}{n4};
\prismaflownode{n6}{below=of n5}{Studies included in quantitative synthesis (meta-analysis)}{n5};

% Labels
\prismalabel{1.3*\mh}{n1a.west}{Identification};
\prismalabel{1.3*\mh}{n1a.west |- {$(n2)!0.6!(n3)$}}{Screening};
\prismalabel{1.3*\mh}{n1a.west |- {$(n4)!0.2!(n5)$}}{Eligibility};
\prismalabel{1.3*\mh}{n1a.west |- n6}{Included};

\prismaflowend
}
\caption{PRISMA 2009 Flow Diagram}
\label{fig:prisma}
\end{figure}

\end{document}

License

This package is licensed under the LPPL 1.3c.

Contribution

Contributions are welcome! Feel free to open issues or submit pull requests to improve the package.

Download the contents of this package in one zip archive (103.2k).

prisma-flow-diagram – This package provides an abstraction for creating PRISMA 2009 flow diagrams in

This package provides an abstraction for creating PRISMA 2009 flow diagrams in . It simplifies the process of building these diagrams by providing intuitive commands while maintaining full compatibility with TikZ.

Packageprisma-flow-diagram
Home pagehttps://github.com/ezefranca/prisma-flow-diagram
Supporthttps://github.com/ezefranca/prisma-flow-diagram
Bug trackerhttps://github.com/ezefranca/prisma-flow-diagram/issues
Announcementshttps://github.com/ezefranca/prisma-flow-diagram/releases
Repositoryhttps://github.com/ezefranca/prisma-flow-diagram
Developershttps://github.com/ezefranca/prisma-flow-diagram
Version1.0.0
LicensesThe Project Public License 1.3c
MaintainerEzequiel Santos
Contained inTeX Live as prisma-flow-diagram
TopicsPGF TikZ
Flow Diagrams
...
Guest Book Sitemap Contact Contact Author