I get confused something about LaTeX and I want to get your recommendation on the following points:
How to include a four page pdf file which is horizontal into my LaTeX file? I am currently using this:
\section{Appendix : Included Studies} \includepdf[pages=1-3]{includedstudies.pdf} \graphicspath{{./images/}} \newpagein my latex file, but the included files seem vertical. How to make it horizontal?
In the appendix it seem like this:
Instead I want to have this
Appendix 1: Data Extraction Form Appendix 2: Included studiesWhat i did it is to create a separate file named
appendix.texand in themain.texfile I wrote:\appendix \input appendix.texHow to make it, Appendix 1: data extraction, Appendix 2:... ?
After it writes “D Appendix: Summary of The Results”, it makes the entire page blank, and after that it shows the content. How can i interrupt it to not leave a blank page?