paths give the location of bin directory which consists of (latex) executable files in any platform. Post installation it is important to set the path for the bin directory. use this tag for installation issues
3
votes
1answer
2k views
Styling the text placed on \path [line] using \tikzstyle.
I'm new to LaTeX and I'm trying to work out how I can configure TikZ to position the text ON the connecting lines (rather than beside it) in this flowchart and then give that text a filled white ...
12
votes
2answers
602 views
Automatically Locate Included Images
Do you think it's possible to include images into LaTeX without specifying the exact path to them. So instead of:
\includegraphics{path/to/image/myfig.pdf}
It would be:
\includegraphics{myfig.pdf}
...
4
votes
1answer
691 views
Easy way to do several line styles on one path using TikZ?
I'm drawing a lot of 3D pictures for school using 3D-plot for TikZ.
I like it when the lines that are inside or behind an object, eg. the ones that shouldn't be visible to be thinner than the lines ...
23
votes
3answers
2k views
Drawing random paths in TikZ
I am looking for a way to draw with TikZ something that looks like a random path.
Here is an inspiration:
Is it possible to have TikZ generate something that would be similar to a random path ...
29
votes
2answers
7k views
How to include graphics with spaces in their path?
I want to import graphics into my main input file using the macro \includegraphics. It does not work if the filename contains spaces.
Include image with spaces in path directory to be processed with ...
3
votes
3answers
331 views
Expand directory names using nested macro definitions
Background
Would like to use values from macros that reference other macros (n-levels deep) and apply their values to the \path command.
Problem
(Scenario A) The following works:
\usepackage{url}
...
9
votes
2answers
1k views
How to make \include work with a quoted string path containing spaces?
In Windows, \input can work with a quoted string path containing spaces, but \include cannot. How to fix it?
\documentclass{book}
\begin{document}
%\input works!
\input{"Contents/Installing and ...
7
votes
2answers
1k views
Obey spaces with URL package (path command)
Background
Using the \path command from the URL package to mark-up directory paths. Some of the paths have spaces.
Problem
The preamble is set to:
\usepackage{algorithm}
\usepackage{booktabs}
% ...
6
votes
2answers
515 views
Using \nameref within \path
Background
Looking to apply a consistent style to file and directory names. The book's appendix has a subsection for every file referenced by the book. Every subsection has a label whose value is ...
8
votes
1answer
2k views
How to make \lstinputlisting applicable to file paths with spaces?
I am using the listings package and the path to the source code contains some spaces.
For example, the path can be /some dir/sub dir/file 1.txt and
\lstinputlisting{/some dir/sub dir/file 1.txt} does ...
23
votes
4answers
11k views
How to make the main file recognize relative paths used in the imported files?
I'm currently using doxygen to generate some documentation for a project,
and doxygen generate some LaTeX code that then can be used to generate a nice pdf.
But let's say I would like to write ...